Question: 12. With SQL, how do you select all the records from a table named Persons where the value of the column FirstName ends with an
12. 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"? 1) SELECT * FROM Persons WHERE FirstName='a' II) SELECT * FROM Persons WHERE FirstName LIKE '%' III) SELECT * FROM Persons WHERE FirstName LIKE '%a' IV) SELECT * FROM Persons WHERE FirstName='%a%' a) = = IV 1 Ceva d) Bos burak
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
