How to run a MYSQL query on a pre-defined fixed time?

后端 未结 3 1350
夕颜
夕颜 2021-01-06 16:40

I have a Mysql insert query. I need to run the query everyday, at 11:00 AM.

How do I execute a query on a fixed time in MySQL?
In MS-SQL i can easily do it by S

相关标签:
3条回答
  • 2021-01-06 16:46

    Use the MySQL Event Scheduler

    0 讨论(0)
  • 2021-01-06 16:52

    if you are using mysql 5.1.6 + use the event scheduler see: http://dev.mysql.com/doc/refman/5.1/en/events.html

    or how about setting up a job in your OS using cron or at ?

    0 讨论(0)
  • 2021-01-06 17:01

    You can use the event scheduler to achieve the above purpose in Mysql.

    To create an event, you can use the create event statement. Here is an explanation with example.

    Something like this:

    CREATE EVENT e_totals
    ->     ON SCHEDULE AT '2006-02-10 23:59:00'
    ->     DO INSERT INTO test.totals VALUES (NOW());
    
    0 讨论(0)
提交回复
热议问题