多选题Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25) Which three statements inserts a row into the table? ()AINSERT INTO employees VALUES (NULL, 'JOHN','Smith');BINSERT INTO employe
题目
多选题
Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25) Which three statements inserts a row into the table? ()
AINSERT INTO employees VALUES (NULL, 'JOHN','Smith');
BINSERT INTO employees( first_name, last_name) VALUES ('JOHN','Smith');
CINSERT INTO employees VALUES ('1000','JOHN','NULL');
DINSERT INTO employees(first_name,last_name, employee_id) VALUES ('1000, 'john','Smith');
EINSERT INTO employees (employee_id) VALUES (1000);
FINSERT INTO employees (employee_id, first_name, last_name) VALUES ( 1000, 'john',);
相似考题