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

html - jquery - p element wont show after I hid it -

python - BeautifulSoup: How to get the nearest tag -

mysql - Trying to get RmySQL to work but not understanding bash's export or filesystem conventions -