I have a SQLite table with below columns:
link VARCHAR(100)
status VARCHAR(10)
date_posted DATE
date_removed DATE
please help me to create SQLite query for:
(link not in DB)
or (status = “NO”)
or ( (status = “YES”) and ((date_removed – date_posted) > 1 day))
Here's a start:
cursor.execute("
SELECT link FROM My_Table
WHERE link!=? OR status=? OR
((status=?) and ((date_removed – date_posted) > 1))",
[new_link,'NO','YES', ]
)

and (julianday(date_removed) - julianday(date_posted)) > 1– StuartLC Aug 23 '12 at 13:46