I have a column with a series of letters and numbers between aa01 and ZZ99. I can't seem to figure out how to search the column for a certain range of those such as aa00 to BZ99.
I tried using a between function such as the one below but it didnt work:
SELECT test_name
FROM Test
WHERE test_series BETWEEN 'aa00' and 'BZ99'
GROUP BY test_name
Edit:I tried adding quotes and it still does not return anything.(I added it above as well)
Edit2: MySQL is the engine.