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 =E2=80=98CRUZ'
INSERT INTO STUDENTS VALUES (A0,=E2=80=99CRUZ=E2=80=99);
INSERT INTO STUDENTS(STUD_ID,LASTNAME)VALUES(10,=E2=80=99CRUZ=E2=80=99);Correct
INSERT INTO STUDENTS VALUES (STUD_ID,LASTNAME)(10,=E2=80=99CRUZ=E2=80=99);