CompTIA Tech+ FC0-U71 Practice Question
Which of the following statements correctly adds a new record to a table named 'Students' where 'Name' is 'Alice' and 'Age' is 10?
INSERT INTO Students (Name, Age) VALUES ('Alice', 10);
INSERT INTO Students SET Name='Alice', Age=10;
UPDATE Students ADD (Name, Age) VALUES ('Alice', 10);
ADD RECORD Alice, 10 TO Students;