MCQs>IT & Programming>MySQL>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'?
MySQL MCQs
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"?
Answer
Correct Answer: SELECT * FROM Persons WHERE FirstName LIKE 'a%'
Explanation:
Note: This Question is unanswered, help us to find answer for this one