Write a SQL query that finds all customers whose **total order amount exceeds
$200**, ordered by total amount descending.
Table: `orders`
| id | customer | amount |
|---|---|---|
| 1 | Alice | 120 |
| 2 | Bob | 80 |
| 3 | Alice | 200 |
| 4 | Carol | 150 |
| 5 | Bob | 90 |
| 6 | Alice | 75 |
| 7 | Carol | 60 |
Alice total = 395, Carol total = 210, Bob total = 170.
Expected output (columns: customer, total)
Alice|395
Carol|210SQLite output format — rows are pipe-separated (
|) with no column headers.Example:
SELECT id, name FROM users WHERE id = 1→1|Alice
Sample tests