I have a simple task where I need to search a record starting with string characters and a single digit after them. What I\'m trying is this
SELECT trecord
I think you can use REGEXP instead of LIKE
SELECT trecord FROM `tbl` WHERE (trecord REGEXP '^ALA[0-9]')