sqlite - SQL query help!! I'm trying to select the row that DOESN'T start with a number -


i have 10,001 rows in table, , of rows except 1 start number. need find 1 row doesn't start number, or doesn't contain number.

so have:

select col1 table1 col1 not '?%' 

is close? need find row doesn't have number...

thanks!!

update: using sqlite database

use:

select col1   table1   substr(col1, 1, 1) not between 0 , 9 

reference:


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -