With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with a | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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 Answer
+ 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