#997

Statuses as One List

The operations filter looks for orders with status = 'paid' or status = 'pending', but the condition has grown into repeated checks of the same field. Rewrite it as one allowed-status list and return order id values in ascending order.

Original query
SELECT id FROM orders WHERE status = 'paid' OR status = 'pending' ORDER BY id

Примерен очакван изход

Така изглежда правилният отговор — броят редове е негов собствен, не е задължително да съвпада с таблиците в схемата.

id
10
11
12

Резултатът от заявката ти ще се покаже тук