What SQL command can be used to delete columns from a table? MODIFY TABLE TableName DROP COLUMN ColumnName MODIFY TABLE TableName DROP ColumnName ALTER TABLE TableName DROP ColumnName ALTER TABLE TableName DROP COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
The NOT EXISTS keyword will be true if any row in the subquery meets the condition. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following modifications may not succeed? Neither of the above actions will succeed Changing a column data type from numeric to char Both of the above actions should succeed Changing a column data type from char to date TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process is a true logical model. False True TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: None of these an internal model. a conceptual model. a logical model. TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process does not include intersection table data. False True TRUE ANSWER : ? YOUR ANSWER : ?
The use of the double NOT EXISTS can be used to find rows that do not match some specified condition. True False TRUE ANSWER : ? YOUR ANSWER : ?
Changing cardinalities in a database is: a common database design task. a database design task that never occurs. is impossible to do, so a new database must be constructed and the data moved into it. a rare database design task, but does occur. TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to add columns to a table? ALTER TABLE TableName ADD COLUMN ColumnName MODIFY TABLE TableName ADD ColumnName ALTER TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
The SQL-92 command to change a table name is RENAME TABLE. True False TRUE ANSWER : ? YOUR ANSWER : ?