SQL - CASE Expressions
Given a table
Products with columns price (nullable) and discount (nullable), what will this query return?SELECT COALESCE(discount, price, 0) AS final_price FROM Products;
