On May 6, 2009, at 1:24 PM, [email protected] wrote: > Is there any SQL command to check if the first character in a text > field is > alphanumeric ????
How about:
x GLOB '[0-9a-zA-Z]*'
where x is the string to be tested.
D. Richard Hipp
[email protected]
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

