View the Exhibit and examine the structure of the PRODUCTS table. You want to display the category with the maximum number of items. You issue the following query: SQL>SELECT COUNT(*),prod_category_id FROM products GROUP BY prod_category_id HAVING COUNT(*) = (SELECT MAX(COUNT(*))…

Examine the structure of the PRODUCTS table: You want to display the names of the products that have the highest total value for UNIT_PRICE *QTY_IN_HAND. Which SQL statement gives the required output? A. SELECT prod_nameFROM productsWHERE (unit_price * qty_in_hand) =…

View the Exhibit and examine the structure of the PRODUCTS table. Which two tasks would require subqueries? (Choose two.) A. Display the minimum list price for each product status. B. Display all suppliers whose list price is less than 1000.…