Deleting MySQL Records After a Specified Time with an Event
To automatically delete messages older than 7 days from a MySQL database, consider this alternative approach using an event:
CREATE EVENT delete_event ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 DAY ON COMPLETION PRESERVE DO BEGIN DELETE messages WHERE date <p>This event will execute every day, at the specified time, and delete all messages whose date column is older than 7 days.</p><p>Here's an explanation of the code:</p>
- CREATE EVENT: Creates a new event with the specified name (delete_event).
- ON SCHEDULE AT CURRENT_TIMESTAMP INTERVAL 1 DAY: Schedules the event to run once a day, starting from the current timestamp.
- ON COMPLETION PRESERVE: Ensures that the event continues to execute even if it encounters an error.
- DO BEGIN: Start the event's execution.
- DELETE messages ...: Deletes rows from the messages table based on the specified condition. In this case, it deletes messages with a date column that's older than 7 days.
- WHERE date
- END;: Ends the event's execution.
Alternatively, you could use a cron script to perform this task. However, an advantage of using an event is that it can be configured to run independently of the system's cron scheduler.
The above is the detailed content of How Can I Automatically Delete Old MySQL Records Using Events?. For more information, please follow other related articles on the PHP Chinese website!

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 English version
Recommended: Win version, supports code prompts!
