Is it possible, just using TSQL, to check if the first two characters of a varchar field are alphabetical?
I need to select from my_table only the rows havi
my_table
select * from my_table where my_field Like '[a-z][a-z]%'