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 and display the results in a column labeled TOTVALUE?,”SELECT P_DESCRIPT, P_QOH, P_PRICE
P_QOH*P_PRICE AS TOTVALUEFROM PRODUCT;”