Forum Moderators: coopster
I've never used mySQL regex but I'm thinking this is the answer for this.
I have a glossary, with links to terms in the A to Z range, but some of the dictionary terms begin with a number or a non-alphanumeric. What would be the best way to select these from a table?
SELECT * FROM table WHERE value!~*'^[A-Z]';
;)