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!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 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 Réponse
+ 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