John Carney
asked on
In SQL Server, SELECTION based on the first letter of the entries in a given column
I need a query that selects every record for which the last name ("LastName") begins with "S"
Thanks!
John
Thanks!
John
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
select * from tablename where lastname like 's%'
ASKER
Thanks, aneesh.