Q. With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” ends with an “a”?
β
Correct Answer: (B)
SELECT * FROM Persons WHERE FirstName LIKE ‘%a’