View the Exhibit and examine the structure of the products table.
Evaluate the following query:
What would be the outcome of executing the above SQL statement?
A.
It produces an error.
B.
It shows the names of all products in the table.
C.
It shows the names of products whose list price is the second highest in the table.
D.
It shows the names of all products whose list price is less than the maximum list price.
C
c
C
SQL> select prod_name from products where prod_id IN (
2 select prod_id from products
3 where prod_list_price = (
4 select max(prod_list_price) from products
5 where prod_list_price