Select Page
Delete MySQL/MariaDB Rows Older Than Date

Delete MySQL/MariaDB Rows Older Than Date

I ran into a problem recently where I needed to delete all rows in a MySQL table that were older than three months. To delete MySQL/MariaDB rows older than date xxxx-xx-xx, I was able to accomplish this with the following statement: MySQL DELETE FROM `table` WHERE...