Which SQL-92 standard SQL command can be used to change a table name? ALTER TABLE CHANGE TABLE RENAME TABLE None of these TRUE ANSWER : ? YOUR ANSWER : ?
Which is not true of a correlated subquery? EXISTS/NOT EXISTS is a form of a correlated subquery. They are very similar to a regular subquery. They can be used to verify functional dependencies. The processing of the SELECT statements is nested. TRUE ANSWER : ? YOUR ANSWER : ?
The EXISTS keyword will be true if: neither of these two conditions is met. any row in the subquery meets the condition only. both of these two conditions are met. all rows in the subquery fail the condition only. 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 : ?
Typically, there should be at least two different copies of the database schema used in the redesign process. True False TRUE ANSWER : ? YOUR ANSWER : ?
How can you find rows that do not match some specified condition? NOT EXISTS EXISTS None of these Double use of NOT EXISTS TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: a conceptual model. None of these a logical model. an internal model. 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 : ?
Which of the following SQL statements are helpful in database redesign? Correlated subqueries only None of these Both of the above are helpful EXISTS/NOT EXISTS expressions 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 ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName ALTER TABLE TableName ADD ColumnName TRUE ANSWER : ? YOUR ANSWER : ?