The EXISTS keyword will be true if: both of these two conditions are met. neither of these two conditions is met. any row in the subquery meets the condition only. all rows in the subquery fail the condition only. 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 COLUMN ColumnName ALTER TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
Changing cardinalities in a database is: a common database design task. a rare database design task, but does occur. a database design task that never occurs. is impossible to do, so a new database must be constructed and the data moved into it. TRUE ANSWER : ? YOUR ANSWER : ?
If a database is built correctly the first time, it will not have to be redesigned. True False TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process is a true logical model. True False TRUE ANSWER : ? YOUR ANSWER : ?
A tool that can help designers understand the dependencies of database structures is a: data model. graphical display. dependency graph. None of these TRUE ANSWER : ? YOUR ANSWER : ?
Typically, there should be at least two different copies of the database schema used in the redesign process. False True TRUE ANSWER : ? YOUR ANSWER : ?
The NOT EXISTS keyword will be true if: neither of these two conditions is met. both of these two conditions are met. all rows in the subquery fail the condition. any row in the subquery meets the condition. TRUE ANSWER : ? YOUR ANSWER : ?
Although creating test databases is a critical and necessary job, there are few career opportunities in this area. False True TRUE ANSWER : ? YOUR ANSWER : ?
The SQL-92 command to change a table name is RENAME TABLE. True False TRUE ANSWER : ? YOUR ANSWER : ?