Forum Discussion
ChadBrandmire
8 years agoQrew Assistant Captain
Going with blanket SQL statement to keep 30 days of history
DELETE FROM History
WHERE Date_Created <= '30 days ago';
Note: SQL statement given more of a template ;)
DELETE FROM History
WHERE Date_Created <= '30 days ago';
Note: SQL statement given more of a template ;)