I want to find only those rows whose column 'col' c doesn't contain characters from a-1. So I don't know how to write script. I've succeed to write script which is opposite to this. Thanks in Advance.
select *
from tbl_comment c
where c.`message` regexp '{a-z}';
I need the script which will be opposite to this. I've tried "not regexp" but it doesn't work.