Am having table which contain a column called datetime which contain date and time as
\"2013-12-26 09:40:41\".
I want to delete the row wh
Use:
DELETE FROM detail1 WHERE date < DATETIME('NOW', '-1 hours');