sql >> Base de Datos >  >> RDS >> Mysql

¿Cómo crear un evento que se ejecute 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;