Page 1 of 1

how to Select string starting with lower

Posted: Thu Nov 01, 2018 12:24 pm
by mister_v
Hi,

How do I create a select-query that only selects strings starting with lower characters ?

thanks

Re: how to Select string starting with lower

Posted: Thu Nov 01, 2018 12:31 pm
by chris
In mysql I like to use :

Code: Select all

SELECT name FROM table WHERE BINARY(name) REGEXP '^[a-z]';
It work really well for me.