Google News
logo
MySQL - Quiz(MCQ)
With MySQL, how can you insert "Olsen" as the "LastName" in the "Persons" table?
A)
INSERT ('Olsen') INTO Persons (LastName)
B)
INSERT INTO Persons ('Olsen') INTO LastName
C)
INSERT INTO Persons (LastName) VALUES ('Olsen')
D)
None of the Above

Correct Answer :   INSERT INTO Persons (LastName) VALUES ('Olsen')

Advertisement