you are working with a database that contains invoice data about online music purchases. you are only interested in invoices sent to customers located in the city of chicago. you want to sort the invoices by order total in ascending order. the order totals are listed in the total column. you write the sql query below. add an order by clause that will sort the invoices by order total in ascending order.
SELECT
*
FROM
invoice
WHERE
billing_ cily = "Paris"'
What total appears in row 6 of your query result?
0.99
3.96
8.91
2.98