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 adding a new column ADDRESS datatypevarchar size 20 to EMPLOYEES table?
ALTER TABLE EMPLOYEESADD COLUMN ADDRESS VARCHAR(20);
ALTER TABLE EMPLOYEESADD ADDRESS VARCHAR(20);
Correct
ALTER EMPLOYEESADD ADDRESS VARCHAR(20);
ALTER TABLE EMPLOYEESSET ADDRESS VARCHAR(20);
Similar IT-6202 questions
Which of the following is the correct example of adding a new column CONTACTNOdatatypeNUMBER size 11...
Which of the following is the correct example inserting a new value to STUDENTS table that will only...
Which of the following is the correct example of deleting a student record from STUDENTS table whose...
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;