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 modifying the column lastname? Change the datatype size to 20.
ALTER EMPLOYEESMODIFY LASTNAME VARCHAR(20);
ALTER EMPLOYEESSET LASTNAME = VARCHAR(20);
ALTER TABLE EMPLOYEESMODIFY LASTNAME VARCHAR(20);
Correct
ALTER TABLE EMPLOYEESSETLASTNAME =VARCHAR(20);
Similar IT-6202 questions
Which of the following is the correct example of adding a new column ADDRESS datatypevarchar size 20...
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...