+ 3

With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with a

With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with an "a"?

25th Mar 2017, 8:08 AM
Hassan Papi
Hassan Papi - avatar
1 ответ
+ 9
SELECT * FROM Persons WHERE FirstName LIKE "a%"; By the way, I think you should revise your SQL course. Start from the beginning again.
25th Mar 2017, 8:29 AM
Saumya
Saumya - avatar