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

SAP Web Service from .NET via WCF -

Optimized Line drawing in QT -

datetime - str to time in python -