hi there, i need a sql statement for selecting from a table with the condition of one field's first char must be a digit like 1abc, 0aaaa, 99999.... i need regeexp i think? thanks
coopster
6:18 pm on Mar 2, 2005 (gmt 0)
Using MySQL?
SELECT mycolumn FROM mytable WHERE mycolumn REGEXP '^[[:digit:]]';