That results in no data being returned at all ``` SELECT * FROM crowd_levels WHERE DATETIME(created_

That results in no data being returned at all
SELECT * FROM crowd_levels WHERE DATETIME(created_at, 'unixepoch') < DATETIME(1743526055, 'unixepoch') ORDER BY created_at ASC LIMIT 3
This query returned no data.


I found out this bug only happens if I have the order by included in the query. If I leave it out the filtering works as I expect it too
Was this page helpful?