I have a column called Name that is a string. I need a query that will select all records that begin with any non-alphabetical character (basically, any record that doesn't start with A-Z). Example:
#sample
3sample
joe
sally
~!sample
Should Return:
#sample
3sample
~!sample
The query will eventually be used for SQL Server, in case the matters. Thanks for any help.
#sample
3sample
joe
sally
~!sample
Should Return:
#sample
3sample
~!sample
The query will eventually be used for SQL Server, in case the matters. Thanks for any help.