Added table alias.
-- Code Here SELECT tra.total_price FROM transactions AS tra WHERE tra.Customer IS NOT NULL ORDER BY tra.total_price DESC
- -- Code Here
SELECT total_priceFROM transactionsWHERE Customer IS NOT NULLORDER BY total_price DESC- SELECT tra.total_price
- FROM transactions AS tra
- WHERE tra.Customer IS NOT NULL
- ORDER BY tra.total_price DESC