AMA University Answers
Login
Register
AMA OED
Courses
IT
IT-6202
Suppose that the user wanted t...
Suppose that the user wanted to add a new column name as CUST_NAME data type char size 6. What is the correct SQL statement to use?
ALTER PARTSSET CUST_NAME = CHAR(6);
ALTER TABLE PARTSSET CUST_NAME = CHAR(6);
ALTER TABLE PARTSADD CUST_NAME CHAR(6);
Correct
ALTER PARTSADD CUST_NAME CHAR(6);
Similar IT-6202 questions
Suppose that the user wanted to add a new column name as CUSTNAME data type char size 6. What is the...
Suppose that a user wanted to change the datatype of column ADDRESS from Varchar to Char which of th...
Suppose that a user wanted to add a new column name as CITY datatype set to char size 10. Which of t...
Suppose that a user wanted to insert a new value using the explicit method which of the following is...
Suppose that a user uses the DELETE statement as shown below: what is/are the possible output. DELET...
Suppose that a user wanted to insert a new value using the implicit method which of the following is...