The EXISTS keyword will be true if any row in the subquery meets the condition. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which SQL-92 standard SQL command can be used to change a table name? ALTER TABLE CHANGE TABLE None of these RENAME TABLE 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 : ?
If a database is built correctly the first time, it will not have to be redesigned. False True TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: None of these an internal model. a conceptual model. a logical model. TRUE ANSWER : ? YOUR ANSWER : ?
Dependency graphs are diagrams that consist of nodes and arcs that show the dependencies of a database. True False 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 COLUMN ColumnName MODIFY TABLE TableName DROP ColumnName ALTER TABLE TableName DROP ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
Because of the need for extensive knowledge of SQL, many database developers choose to automate the redesign process. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which is not true of a correlated subquery? They can be used to verify functional dependencies. 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. TRUE ANSWER : ? YOUR ANSWER : ?