(1Z0-006) Oracle Database Foundations Associate Practice Test
(1Z0-006) Oracle Database Foundations Associate 1Z0-006 Basic SQL Statements Questions and Answers
A user wants to add a new employee record to the 'employees' table, which has columns for 'employee_id', 'last_name', and 'hire_date'.
Which of the following SQL statements is the correct syntax for this operation?
Select your answer
A
ADD INTO employees VALUES (101, 'Smith', '17-OCT-23');
B
INSERT INTO employees (employee_id, last_name, hire_date) VALUES (101, 'Smith', '17-OCT-23');
C
UPDATE employees SET employee_id=101, last_name='Smith', hire_date='17-OCT-23';
D
CREATE NEW ROW IN employees VALUES (101, 'Smith', '17-OCT-23');
Hint