I have 10,001 rows in my table and all but one row start with a number. I need to find this one line that does not start with a number or even does not contain a number.
So this is what I have:
Select col1 from table1 where col1 not like '?%'
Is it even close? I need to find a string that does not have a number ...
Thank!!
UPDATE: I am using sqlite database
source
share