To drop a column that is used as a foreign key, first: drop the foreign key constraint. drop the primary key. drop the table containing the foreign key. All of these TRUE ANSWER : ? YOUR ANSWER : ?
The data model that is produced from reverse engineering is: a logical model. an internal model. a conceptual model. None of these TRUE ANSWER : ? YOUR ANSWER : ?
The NOT EXISTS keyword will be true if: neither of these two conditions is met. both of these two conditions are met. any row in the subquery meets the condition. all rows in the subquery fail the condition. TRUE ANSWER : ? YOUR ANSWER : ?
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 : ?
The NOT EXISTS keyword will be true if any row in the subquery meets the condition. 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? None of these ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0); ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0); 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 : ?
How can you find rows that do not match some specified condition? NOT EXISTS Double use of NOT EXISTS None of these EXISTS TRUE ANSWER : ? YOUR ANSWER : ?
The data model produced from the reverse engineering process does not include intersection table data. True False TRUE ANSWER : ? YOUR ANSWER : ?