_____________are normally expressed in the form of rules.
a. Attributes
b. Entities
c. Relationships
d. Constraints
A database management system (DBMS) must have validation, transformation, and
mapping functions, as well as other functions, in order to be classified as distributed.
a. True
b. False
Which of the following queries will use the given columns and column aliases from the
PRODUCT table to determine the total value of inventory held on hand?
a. SELECT P_DESCRIPT, P_QOH, P_PRICE, P_QOH/P_PRICE FROM PRODUCT;
b. SELECT P_DESCRIPT, P_QOH, P_PRICE, P_QOH=P_PRICE FROM PRODUCT;
c. SELECT P_DESCRIPT, P_QOH, P_PRICE, P_QOH*P_PRICE FROM PRODUCT;
d. SELECT P_DESCRIPT, P_QOH, P_PRICE, P_QOH-P_PRICE FROM PRODUCT;