Speak master so I found it for you, yes it has how to do job in mysql as it speaks on this site: http://www.sitepoint.com/how-to-create-mysql-events/
Something like this example:
DELIMITER $$
CREATE
EVENT `archive_blogs`
ON SCHEDULE EVERY 1 WEEK STARTS '2011-07-24 03:00:00'
DO BEGIN
-- copy deleted posts
INSERT INTO blog_archive (id, title, content)
SELECT id, title, content
FROM blog
WHERE deleted = 1;
-- copy associated audit records
INSERT INTO audit_archive (id, blog_id, changetype, changetime)
SELECT audit.id, audit.blog_id, audit.changetype, audit.changetime
FROM audit
JOIN blog ON audit.blog_id = blog.id
WHERE blog.deleted = 1;
-- remove deleted blogs and audit entries
DELETE FROM blog WHERE deleted = 1;
END */$$
DELIMITER ;
Just adapt your need and good.
Adding Full Reference to Event: http://dev.mysql.com/doc/refman/5.5/en/create-event.html
Do you want this to happen when? From time to time? When it is entered, updated?
– Maniero
Maniero, there is the possibility of me updating a table and at a certain time of the next day it update again ?
– Diêgo Correia de Andrade