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 JOB_ID? Change the datatype size to 10.
ALTER TABLE EMPLOYEESMODIFY SET JOB_ID CHAR(10);
ALTER EMPLOYEESMODIFY SET JOB_ID CHAR(10);
ALTER TABLE EMPLOYEESMODIFY JOB_ID CHAR(10);
Correct
ALTER EMPLOYEESMODIFY JOB_ID CHAR(10);
Similar IT-6202 questions
Which of the following is the correct example of renaming the table EMPLOYEES to WORKERS?
Which of the following is the correct example of removing a column FIRSTNAME from EMPLOYEES table?
Which of the following is the correct example of dropping the table EMPLOYEES?
Which of the following is the correct example of modifying the column lastname? Change the datatype...
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...