✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Evaluate the following query:
SELECT prod_name FROM products
WHERE prod_id IN (SELECT prod_id FROM products
WHERE prod_list_price = (SELECT MAX(prod_list_price)FROM products WHERE prod_list_price < (SELECT MAX(prod_list_price)FROM products)));
What would be the outcome of executing the above SQL statement?