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 creating a new table STUDENTS? The column STUD_ID is set to primary key.
CREATE TABLE STUDENTS( STUD_ID NUMBER(3) datatypePRIMARY KEY);
CREATE TABLE STUDENTS( STUD_ID NUMBER(3) PRIMARY KEY);
Correct
CREATE TABLE STUDENTS( STUD_ID NUMBER(3) pk);
CREATE STUDENTS( STUD_ID NUMBER(3) PRIMARY KEY);
Similar IT-6202 questions
Which of the following is the correct example of removing a column SALARY from EMPLOYEES table?
Which of the following is the correct example of truncating the table EMPLOYEES?
Which of the following is the correct example of modifying the column JOBID? Change the datatype siz...
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?