Hi I am trying to match a field that contains any alphabet but it does not return any rows? SELECT ..Name LIKE '%[a-z]%' why doesn't this return any rows?
your using regex in a like statement to you use regexp you need to "WHERE Name REGEXP '[REGEX-HERE]'" + check mysql manual for regexp liek should be WHERE Name LIKE '%henr%' returns henry, henroid, henrica etc
I think your regex should look like this (not sure... I'd have to test it myself. WHERE name LIKE '[A-Za-z]'; Google mysql LIKE statement. It'll tell you the correct way to match letters.
ok it turns out that like has no ability to match any alphabet in mysql. i guess i'll have to use regexp