Google News
logo
MySQL - Quiz(MCQ)
With MySQL, how do you select a column named "FirstName" from a table named "Persons"?
A)
SELECT Persons.FirstName
B)
SELECT FirstName FROM Persons
C)
EXTRACT FirstName FROM Persons
D)
None of the Above

Correct Answer :   SELECT FirstName FROM Persons

Advertisement