Exercise #187: Give me a list of all invoices from Redmond, WA sorted from low-to-high by total
SELECT * FROM invoices WHERE billing_city = 'Redmond' ORDER BY total ASC;
Exercise #188: Give me a list of all invoices from Redmond, WA sorted from high-to-low by total
SELECT * FROM invoices WHERE billing_city = 'Redmond' ORDER BY total DESC;
Exercise #189: Give me a list of all invoices from Germany sorted from high-to-low by total