The NOT EXISTS keyword will be true if any row in the subquery meets the condition. True False TRUE ANSWER : ? YOUR ANSWER : ?
The process of reading a database schema and producing a data model from that schema is known as: None of these database design. data modeling. reverse engineering. 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 : ?
To drop a column that is used as a foreign key, first: drop the primary key. drop the table containing the foreign key. All of these drop the foreign key constraint. TRUE ANSWER : ? YOUR ANSWER : ?
What SQL command can be used to add columns to a table? ALTER TABLE TableName ADD ColumnName MODIFY TABLE TableName ADD COLUMN ColumnName MODIFY TABLE TableName ADD ColumnName ALTER TABLE TableName ADD COLUMN ColumnName TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process is a true logical model. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following SQL statements are helpful in database redesign? Correlated subqueries only Both of the above are helpful None of these EXISTS/NOT EXISTS expressions only 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 : ?
What SQL command will allow you to change the table STUDENT to add the constraint named GradeCheck that states that the values of the Grade column must be greater than 0? ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0); ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); None of these ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0); TRUE ANSWER : ? YOUR ANSWER : ?