Hi,
How do I create a select-query that only selects strings starting with lower characters ?
thanks
how to Select string starting with lower
Re: how to Select string starting with lower
In mysql I like to use :
It work really well for me.
Code: Select all
SELECT name FROM table WHERE BINARY(name) REGEXP '^[a-z]';