Google News
logo
MySQL - Quiz(MCQ)
With MySQL, how do you select all the columns from a table named "Persons"?
A)
SELECT Persons
B)
SELECT *.Persons
C)
SELECT * FROM Persons
D)
SELECT [all] FROM Persons

Correct Answer :   SELECT * FROM Persons

Advertisement