DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
MySQL

MySQL Event

Share

In MySQL you can add an event to a database that runs in a interval to automate database tasks. You can wait for intervals and check the table to see the changes.

By default, the event scheduler thread is not enabled in the database. You need to enable this:

SET GLOBAL event_scheduler = ON;

Or you can off this by:

SET GLOBAL event_scheduler = OFF;

You can see by below command whether event scheduler thread is running or not:

SHOW PROCESSLIST;

Create an MySQL Event:

CREATE EVENT evt_newsletter
ON SCHEDULE EVERY 2 MINUTE
DO
INSERT INTO newsletter(message,post_date)
VALUES('Newsletter added',NOW());

Changing schedule:

ALTER EVENT evt_newsletter
ON SCHEDULE EVERY 5 MINUTE;

You can change the body also

ALTER EVENT evt_newsletter
DO
INSERT INTO newsletter(message,post_date)
VALUES('Newsletter changed',NOW());

Disable event:

ALTER EVENT evt_newsletter DISABLE;

Enable event:

ALTER EVENT evt_newsletter ENABLE;

Rename event:

ALTER EVENT evt_newsletter RENAME TO evt_newsletter_new;

Drop MySQL event:

DROP EVENT [IF EXIST] evt_newsletter;
Namaste UI (Author)

Namaste UI collaborates closely with clients to develop tailored guest posting strategies that align with their unique goals and target audiences. Their commitment to delivering high-quality, niche-specific content ensures that each guest post not only meets but exceeds the expectations of both clients and the hosting platforms. Connect with us on social media for the latest updates on guest posting trends, outreach strategies, and digital marketing tips. For any types of guest posting services, contact us on info[at]namasteui.com.

Recent Posts

Forex Investment Tips for Beginners

Investing in the forex market may look to be a dangerous game. With some worthwhile…

2 days ago

How Did The Restaurant Industry change In Post Pandemic Era?

The coronavirus outbreak has drastically changed the way we live our lives. Yes, that's absolutely…

2 weeks ago

A Guide To CPQ and How It Fuels Marketing and Sales

Sales and marketing teams help attract, convert, and retain customers to ensure an organization’s long-term…

3 weeks ago

Top Questions Asked About Invoice Financing Applications

Are you an owner of a small business who’s trying to come up with ways…

4 weeks ago

Complete Medical Guide to Blood Sugar Testing and Glucose Control

Introduction When patients bring me their lab reports, the confusion is almost always the same.…

1 month ago

6 Tips to Strategically Remodel Your Home

Are you excited about remodeling your house after a long time? Perhaps if you're planning…

1 month ago