Direct Daily Order Filter
The daily report must return orders for 2024-02-04 and keep sorting by id. Rewrite the filter so it compares created_at to the start of that day and the start of the next day, without changing the rows returned.
Original query
SELECT * FROM orders WHERE created_at::date = '2024-02-04' ORDER BY id
Exemple de sortie attendue
Voici à quoi ressemble une réponse correcte — son nombre de lignes lui est propre, il n'a pas à correspondre aux tables du schéma.
| id | status | user_id | created_at |
|---|---|---|---|
| 12 | paid | 2 | 2024-02-04T09:00:00 |
Connectez-vous pour voir l'historique des soumissions
Se connecterConnectez-vous pour utiliser le Mentor IA
Se connecter