Multiple Choice
You have been given two tables,CUSTOMER and SALE.You want to check the referential integrity constraint: SALE.CustomerNumber must exist in CUSTOMER.CustomerNumber
You run the following SQL query:
SELECT CustomerNumber
FROM SALE
WHERE CustomerNumber NOT IN
(SELECT CustomerNumber
FROM CUSTOMER) ;
What is shown in the results of this query?
A) All values of CustomerNumber that match the constraint.
B) All values of CustomerNumber that violate the constraint.
C) All values of CustomerNumber where
SALE.CustomerNumber = CUSTOMER.CustomerNumber.
D) All values of Customer number that are in CUSTOMER but not in SALE.
Correct Answer:

Verified
Correct Answer:
Verified
Q43: The first step in assessing table structure
Q44: You are creating a BOAT table using
Q45: One situation created by the multivalued,multicolumn problem
Q46: The presence of one or more foreign
Q47: General-purpose remarks columns rarely contain important data.
Q49: Read-only databases are often updated.
Q50: When examining data values as a part
Q51: When examining data values as a part
Q52: When a table is created using existing
Q53: During the second step of assessing table