Changing cardinalities in a database is: 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. a database design task that never occurs. a common database design task. 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 : ?
Because of the importance of making data model changes correctly, many professionals are ________ about using an automated process for database redesign. skeptical optimistic ambivalent None of these TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to delete columns from a table? MODIFY TABLE TableName DROP ColumnName ALTER TABLE TableName DROP COLUMN ColumnName MODIFY TABLE TableName DROP COLUMN ColumnName ALTER TABLE TableName DROP ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
Information systems and organizations do not just influence each other; they create each other. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which is not true of a correlated subquery? The processing of the SELECT statements is nested. They are very similar to a regular subquery. EXISTS/NOT EXISTS is a form of a correlated subquery. They can be used to verify functional dependencies. 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 : ?