Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como criar um evento que é executado a cada 24 horas?

CREATE EVENT cleartags
    ON SCHEDULE EVERY 24 HOUR
    DO 
      delete tags from tags left join tagowners on tags.id=tagowners.tagId
    where tagowners.tagId is null;