Database redesign is not terribly difficult if the: database is structured. database is well-designed. database has no data. database is relatively small. TRUE ANSWER : ? YOUR ANSWER : ?
The use of the double NOT EXISTS can be used to find rows that do not match some specified condition. False True TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to delete columns from a table? ALTER TABLE TableName DROP COLUMN ColumnName MODIFY TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP COLUMN ColumnName ALTER TABLE TableName DROP ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
A regular subquery can be processed: from the top down. from the bottom up. None of these by nesting. TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if: any row in the subquery meets the condition only. all rows in the subquery fail the condition only. both of these two conditions are met. neither of these two conditions is met. TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if any row in the subquery meets the condition. True False TRUE ANSWER : ? YOUR ANSWER : ?
To drop a column that is used as a foreign key, first: All of these drop the foreign key constraint. drop the table containing the foreign key. drop the primary key. TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following modifications may not succeed? Both of the above actions should succeed Changing a column data type from char to date Changing a column data type from numeric to char Neither of the above actions will succeed TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to add columns to a table? ALTER TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD ColumnName ALTER TABLE TableName ADD COLUMN ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?