How to set a timer in mysql

Suppose the current date is 20141110 10:00pm , I would like to let mysql to update a field and then dump few fields into a file while the date is 20141201 10:00pm how to implement it? What I know is to use event, but this seems to be used under some interval time. like every … Read more

Event driven vs sequential programming

Two different methods to support two different needs. If you have a problem driven by events, then you should use an event-driven methodology. If you need to perform procedures on defined data, but you’re not worried about what’s happening elsewhere, then obviously you want to use a more “sequential” style. Note that typically, these two … Read more