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 deleting a student record from STUDENTS table whose COURSE is equal to NULL;
DELETE FROM STUDENTSWHERE COURSE = =E2=80=98NULL=E2=80=99;
DELETE FROM STUDENTSWHERE COURSE IS NULL;
Correct
DELETE * FROM STUDENTSWHERE COURSE IS NULL;
DELETE FROM STUDENTSWHERE COURSE ISĀ =NULL;
Similar IT-6202 questions
Which of the following is the correct example of inserting new values to STUDENTS table where the co...
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...