+ 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"?
1 Respuesta
+ 9
SELECT * FROM Persons
WHERE FirstName LIKE "a%";
By the way, I think you should revise your SQL course. Start from the beginning again.