#980

Daily Orders Without Extra Work

The daily report must find orders created during 2024-02-01 and keep the same ordering by id. Rewrite the filter so it compares created_at itself to the boundaries of that day, without changing the result.

Original query
SELECT * FROM orders WHERE DATE(created_at) = '2024-02-01' 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.

idstatususer_idcreated_at
10paid12024-02-01T10:00:00

Le résultat de votre requête apparaîtra ici