Is it possible to write an SQL statement which finds all rows which match a specific arrangement of letters/numbers?
i.e. SELECT myCol FROM myTable WHERE myCol='<letter><letter><number>'
Should return 12X and 34Y but not 123X or 34YY
I am using MySQL.