AMA University Answers
Login
Register
AMA OED
Courses
IT
IT-6202
Which of the following is the...
Which of the following is the correct example of inserting new values to STUDENTS table where the course is set to NULL;
INSERT INTO STUDENTS (1,'DELA CRUZ','JUANITO',NULL);
INSERT INTO STUDENTS VALUES(1,'DELA CRUZ','JUANITO',NULL);
Correct
INSERT INTO STUDENTS VALUES(1,'DELA CRUZ','JUANITO','NULL');
INSERT INTO STUDENTS (1,'DELA CRUZ','JUANITO','NULL');
Similar IT-6202 questions
Which of the following is the correct example of updating the LASTNAME to =E2=80=98REYES' of all stu...
Which of the following is the correct example of deleting all records in STUDENTS table;
Which of the following is the correct example of inserting new values to STUDENTS table?
Which of the following is the correct example of updating the COURSE to =E2=80=98N/A' of all student...
Which of the following is the correct example updating the student LASTNAME TO =E2=80=98SANTOS' and...
Which of the following is the correct example inserting a new value to STUDENTS table that will only...