Greetings. I use this code here to search among the strings of the largest numeric value in a pair (letter-digit).
SELECT `number` FROM `orders` WHERE `number` RLIKE '^AU.*' order by `number` desc limit 1
It seems to be all right, the request will regularly produce the necessary values, until AU100 appears. The request will ignore it, issuing a maximum AU99. What is the easiest way to get a request to correctly perceive the maximum value?