in my table ,
I have firstname and last name ,
few names are upper case ,( ABRAHAM )
few names are lower case ,(abraham)
few names are character starting with ucword (Abraham)
So when i am doing the where condition using REGEXP '^[abc]' ,am not getting proper records,
How to change the names to lower case and use SELECT QUERY ,
SELECT * FROM `test_tbl` WHERE cus_name REGEXP '^[abc]';
This is my query, works fine if the records are lower case, but my records are intermediate ,my all cus name are not lower case , all the names are like ucword ,
So for this above query am not getting proper records display ,