mysql - How To Update a Sql Table On Regular Interval -


i have data table in sql database , want update entries in table on 1 day(regular) interval. how can it

you can try event scheduler in sql

create event myevent on schedule @ current_timestamp + interval 1 hour update myschema.mytable set mycol = mycol + 1;

i hope may useful you...

since dont know scenario..


Comments

Popular posts from this blog

java - How to print docx and pdf? -

qml - Is it possible to implement SystemTrayIcon functionality in Qt Quick application -

java - IntelliJ to move a class along with conflicted classes to a new package? -