Answer:
Check the explanation
Step-by-step explanation:
The SELECT statement that returns these columns are:
SELECT
list_price,
discount_percent,
ROUND (list_price * discount_percent / 100,2) AS discount_amount
FROM
products;
----------------------------------------------------------------------