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.
INSERT INTO STUDENTS TABLE VALUES (10,'CRUZ','NULL','NULL');
INSERT INTO STUDENTS VALUES (10,'CRUZ',NULL,NULL);Correct
INSERT INTO STUDENTS (10,'CRUZ',NULL,NULL);
INSERT INTO STUDENTS VALUES (10,'CRUZ','NULL','NULL');