Solved

Given the Tables PRODUCT (ProductID,Description,Cost)

Question 32

Multiple Choice

Given the tables
PRODUCT (ProductID,Description,Cost)
SUPPLIER (SupplierID,ContactName,PhoneNumber)

As shown in the figure below,which of the following would represent the correct placement of foreign keys?
Given the tables PRODUCT (<u>ProductID</u>,Description,Cost)  SUPPLIER (<u>SupplierID</u>,ContactName,PhoneNumber)  As shown in the figure below,which of the following would represent the correct placement of foreign keys?   A)  PRODUCT (ProductID, Description, Cost)  SUPPLIER (SupplierID, ContactName, PhoneNumber)  B)  PRODUCT (ProductID, Description, Cost, SupplierID)  SUPPLIER (SupplierID, ContactName, PhoneNumber, ProductID)  C)  PRODUCT (ProductID, Description, Cost)  SUPPLIER (SupplierID, ContactName, PhoneNumber)  PRODUCT_SUPPLIER (ProductID, SupplierID, PhoneNumber)  D)  PRODUCT (ProductID, Description, Cost, SupplierID)  SUPPLIER (SupplierID, ContactName, PhoneNumber)  E)  PRODUCT (ProductID, Description, Cost)  SUPPLIER (SupplierID, ContactName, PhoneNumber)  PRODUCT_SUPPLIER (ProductID, SupplierID)


A) PRODUCT (ProductID, Description, Cost) SUPPLIER (SupplierID, ContactName, PhoneNumber)
B) PRODUCT (ProductID, Description, Cost, SupplierID) SUPPLIER (SupplierID, ContactName, PhoneNumber, ProductID)
C) PRODUCT (ProductID, Description, Cost) SUPPLIER (SupplierID, ContactName, PhoneNumber)
PRODUCT_SUPPLIER (ProductID, SupplierID, PhoneNumber)
D) PRODUCT (ProductID, Description, Cost, SupplierID) SUPPLIER (SupplierID, ContactName, PhoneNumber)
E) PRODUCT (ProductID, Description, Cost) SUPPLIER (SupplierID, ContactName, PhoneNumber)
PRODUCT_SUPPLIER (ProductID, SupplierID)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions