Here is what I was thinking, I know that in this field, the first word will always be at least 2 characters long.
Select *
From Table!
where SUBSTRING(Name, 1, 3) like '[A-Z]'
However, this is bringing back non capital letters any ideas?
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.
It should be noted that this will also exclude numbers and characters outside A-Z. If you wanted non-Latin upper case characters included, you really need to use the
Upperfunction along with aCollatepredicate:Test script:
Results: