Click here to Skip to main content
15,901,666 members
Please Sign up or sign in to vote.
1.10/5 (4 votes)
See more:
question display all member surnames who start with the letter j
SQL
SELECT memberSurnmae
FROM member
WHERE
Posted
Updated 24-May-15 17:09pm
v2

There are a number of ways.

The easiest is probably
SQL
Select membersurname from member where membersurname like 'J%'
 
Share this answer
 
v2
Hi,

Check this....

SQL
SELECT memberSurnmae FROM member WHERE UPPER(memberSurnmae) like 'J%' 


Hope this will help you.

Cheers
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900