#IT-6202
Awesome StudentQuestion • Database Management System 1 (Oracle)
Which of the following is the correct example inserting a new value to STUDENTS table that will only add new data to STUD_ID and LASTNAME? The stud_id is 10 and lastname is 'CRUZ' and the rest of the column is set to NULL.
Answer
INSERT INTO STUDENTS VALUES (10,'CRUZ',NULL,NULL);