a job to delete rows older than 3 months in mysql database

后端 未结 4 1800
走了就别回头了
走了就别回头了 2021-02-01 06:44

We use mysql server as a centralized logging system and I want to have a job to delete\\clean the table entries that are more than 3 months old regularly. What is the best way t

4条回答
  •  孤独总比滥情好
    2021-02-01 07:27

    MySQL 5.1 supports Events. I haven't actually used them myself, so I won't vouch for them. However, if all you want to do is to run a DELETE statement on a regular basis, I think that it would work well enough.

提交回复
热议问题