I need to create a rule only for alphabet characters
i used the following Wildcard character sequences but didn’t work !
LIKE ‘[A-Za-z]’
LIKE ‘a-z’
LIKE ‘A-Za-z’
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Double negative like
Ignoring the first NOT, this means “match any character not in the range a to z”.
Then, you reverse using the first NOT which means “don’t match any character not in the range a to z”
Edit, after comment
LIKE '%[a-z]%'means “find any single character between a-z. So111s222is matched for example becausesmatches in this like.