Database Management
Accenture PrimermediumDatabase ManagementData Manipulation Language

Which statement inserts a new row into the STUDENT table?

Answer options

A
INSERT INTO student VALUES(101, 'Smith', '15-JAN-1990', 'New York');
B
INSERT INTO student(stud_id, address, name, dob) VALUES(101);
C
INSERT INTO student VALUES(101);
D
INSERT INTO student(name) VALUES('Smith');

Correct answer: INSERT INTO student VALUES(101, 'Smith', '15-JAN-1990', 'New York');

Explanation

Providing all required column values in the correct positional order is valid.

Related Accenture Database Management questions

Practice more Accenture Database Management questions

PrimerDumps has 1400+ primer questions, 2026 mocks and coding hands-on — all free.