The use of the double NOT EXISTS can be used to find rows that do not match some specified condition. 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 : ?
The EXISTS keyword will be true if any row in the subquery meets the condition. False True TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process is a true logical model. False True TRUE ANSWER : ? YOUR ANSWER : ?
It is not easy to build a database correctly the first time. True False TRUE ANSWER : ? YOUR ANSWER : ?
Reverse engineering is the process of reading a database schema and producing a data model from that schema. 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 : ?
Changing cardinalities in a database is: is impossible to do, so a new database must be constructed and the data moved into it. a rare database design task, but does occur. a database design task that never occurs. a common database design task. 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? None of these ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0); ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0); TRUE ANSWER : ? YOUR ANSWER : ?