Given the table Use, defined as
CREATE TABLE Use(date TEXT NOT NULL, id TEXT PRIMARY KEY);
I want to make a query to find "All uses before today", however SQLite is not behaving as I expect and return the wrong value.
I tried to query using my table as such:
SELECT * FROM Use WHERE date <= datetime('now')