how could I select rows that begin with capatil latter A
I’ve used this but it won’t work
select name from myTable
where name like 'A%'
but the selected rows began with a (lower case ) and A (upper case)
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.
Try this:
select name from myTablewhere name like 'A%'
COLLATE SQL_Latin1_General_CP1_CS_AS
where the …
CS… means Case-Sensitive.