Database Redesign What SQL command can be used to delete columns from a table? ALTER TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP COLUMN ColumnName ALTER TABLE TableName DROP COLUMN ColumnName ALTER TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP COLUMN ColumnName ALTER TABLE TableName DROP COLUMN ColumnName ANSWER DOWNLOAD EXAMIANS APP
Database Redesign The SQL-92 command to change a table name is RENAME TABLE. True False True False ANSWER DOWNLOAD EXAMIANS APP
Database Redesign To drop a column that is used as a foreign key, first: drop the table containing the foreign key. drop the primary key. All of these drop the foreign key constraint. drop the table containing the foreign key. drop the primary key. All of these drop the foreign key constraint. ANSWER DOWNLOAD EXAMIANS APP
Database Redesign A correlated subquery is processed as a nested subquery. False True False True ANSWER DOWNLOAD EXAMIANS APP
Database Redesign How can you find rows that do not match some specified condition? Double use of NOT EXISTS NOT EXISTS None of these EXISTS Double use of NOT EXISTS NOT EXISTS None of these EXISTS ANSWER DOWNLOAD EXAMIANS APP
Database Redesign A regular subquery can be processed: from the top down. by nesting. from the bottom up. None of these from the top down. by nesting. from the bottom up. None of these ANSWER DOWNLOAD EXAMIANS APP