Database Redesign To drop a column that is used as a foreign key, first: All of these drop the table containing the foreign key. drop the foreign key constraint. drop the primary key. All of these drop the table containing the foreign key. drop the foreign key constraint. drop the primary key. ANSWER DOWNLOAD EXAMIANS APP
Database Redesign Correlated subqueries are similar to a regular subquery. False True False True ANSWER DOWNLOAD EXAMIANS APP
Database Redesign The NOT EXISTS keyword will be true if any row in the subquery meets the condition. True False True False ANSWER DOWNLOAD EXAMIANS APP
Database Redesign The EXISTS keyword will be true if: both of these two conditions are met. any row in the subquery meets the condition only. neither of these two conditions is met. all rows in the subquery fail the condition only. both of these two conditions are met. any row in the subquery meets the condition only. neither of these two conditions is met. all rows in the subquery fail the condition only. ANSWER DOWNLOAD EXAMIANS APP
Database Redesign What SQL command can be used to add columns to a table? ALTER TABLE TableName ADD ColumnName ALTER TABLE TableName ADD COLUMN ColumnName MODIFY TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD ColumnName ALTER TABLE TableName ADD COLUMN ColumnName MODIFY TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName ANSWER DOWNLOAD EXAMIANS APP
Database Redesign Which of the following SQL statements are helpful in database redesign? Correlated subqueries only EXISTS/NOT EXISTS expressions only None of these Both of the above are helpful Correlated subqueries only EXISTS/NOT EXISTS expressions only None of these Both of the above are helpful ANSWER DOWNLOAD EXAMIANS APP