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

google api - Incomplete response from Gmail API threads.list -

Installing Android SQLite Asset Helper -

Qt Creator - Searching files with Locator including folder -