Hacker News new | ask | show | jobs
by philshem 2329 days ago
I don’t know if this will go over well, but how about the infamous 1=1?

    WHERE 1=1
      AND country = 'UAE'
      AND day >= DATE('2019-07-01')
      AND DAY_OF_WEEK(day) != 5
      AND scheduled_accuracy_meters <= 10*1000

(More reading: https://stackoverflow.com/q/242822)
1 comments

WHERE TRUE would also work, so would WHERE 1 I believe