I need to write select that gives me records which in field SerialNumber have only string like this MT and some numbers. For example MT34234234 or MT455. I dont want other records for example with value MTA424 or MT23423423BBA. I write this reqular expresion:
select * from
MyTable
where SerialNumber like 'MT%[0-9]'
But it gives me record with value MTA424. Can somebody help me how i can fix my query?