✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following Orders table:
order_id | amount |
1 | 50 |
2 | 200 |
3 | 150 |
4 | 80 |
And the SQL query:
<SQL>
SELECT order_id FROM OrdersWHERE amount > 80ORDER BY amount DESC;
What is the output of this query?