Dear All,
I have some data in a column e.g
G457435732
H475894374
123456465
S405843280
876546123
And I am trying to select only the data that starts with a letter. I tried:-
select * from <table> where column like '{A-Z}%'
But without success. How do you select only rows that start with only one letter followed by numbers?
Many thanks in advance
Paul
I have some data in a column e.g
G457435732
H475894374
123456465
S405843280
876546123
And I am trying to select only the data that starts with a letter. I tried:-
select * from <table> where column like '{A-Z}%'
But without success. How do you select only rows that start with only one letter followed by numbers?
Many thanks in advance
Paul