The NOT EXISTS keyword will be true if: any row in the subquery meets the condition. all rows in the subquery fail the condition. both of these two conditions are met. neither of these two conditions is met. TRUE ANSWER : ? YOUR ANSWER : ?
Before any changes to database structure are attempted one should first: clearly understand the current structure and contents of the database only. test any changes on a test database only. All of these create a complete backup of the operational database only. TRUE ANSWER : ? YOUR ANSWER : ?
Database redesign is not terribly difficult if the: database is well-designed. database is structured. database has no data. database is relatively small. 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 : ?
The EXISTS keyword will be true if: all rows in the subquery fail the condition only. neither of these two conditions is met. both of these two conditions are met. any row in the subquery meets the condition only. TRUE ANSWER : ? YOUR ANSWER : ?
Because of the importance of making data model changes correctly, many professionals are ________ about using an automated process for database redesign. optimistic ambivalent skeptical None of these TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to delete columns from a table? ALTER TABLE TableName DROP COLUMN ColumnName ALTER TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP ColumnName MODIFY TABLE TableName DROP COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
A tool that can help designers understand the dependencies of database structures is a: graphical display. data model. None of these dependency graph. 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 : ?