Hello
Can anybody tell me the correct MS SQL statement to display names: Where each name displayed is starting with a certain letter of the alphabet only. For example:
The list should show names starting with the letter A
(what must I change in my statement below)
SELECT LastN, FirstN, Tel
FROM People_DB
WHERE LastN = 'A'
ORDER BY LastN ASC
Last Name
Adams,
Andrews,
Archer,
Arrow
Thanks
Lynn
Use the LIKE operator with the % wildcard, like this:
SELECT LastN, FirstN, Tel
FROM People_DB
WHERE LastNLIKE 'A%'
ORDER BY LastN ASC
You can also use an underscore to match a single character. Check out the LIKE clause in BOL for all the options.
Don
|||Hi Don
Thanks for the speedy reply and the information.
Lynn
No comments:
Post a Comment