Which is not true of a correlated subquery? They can be used to verify functional dependencies. The processing of the SELECT statements is nested. EXISTS/NOT EXISTS is a form of a correlated subquery. They are very similar to a regular subquery. TRUE ANSWER : ? YOUR ANSWER : ?
The process of reading a database schema and producing a data model from that schema is known as: data modeling. reverse engineering. None of these database design. TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process does not include intersection table data. False True 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 : ?
Reverse engineering is the process of reading a database schema and producing a data model from that schema. True False TRUE ANSWER : ? YOUR ANSWER : ?
Changing cardinalities in a database is: a database design task that never occurs. a rare database design task, but does occur. a common database design task. is impossible to do, so a new database must be constructed and the data moved into it. 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 : ?
Information systems and organizations do not just influence each other; they create each other. False True TRUE ANSWER : ? YOUR ANSWER : ?
How can you find rows that do not match some specified condition? Double use of NOT EXISTS EXISTS None of these NOT EXISTS TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to add columns to a table? MODIFY TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD ColumnName ALTER TABLE TableName ADD COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?