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 CONTACT_NOdatatypeNUMBER size 11 to EMPLOYEES table?
ALTER TABLE EMPLOYEESADD CONTACT_NO NUMBER;
ALTER EMPLOYEESADD CONTACT_NO NUMBER(11);
ALTER TABLE EMPLOYEESADD COLUMN CONTACT_NO NUMBER(11);
ALTER TABLE EMPLOYEESADD CONTACT_NO NUMBER(11);
Correct
Similar IT-6202 questions
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;
Which of the following is the correct example of inserting new values to STUDENTS table?