tags:

views:

10

answers:

1

Hi Is it possible to execute a query in regular interval? ex: i want an mysql quuery to be executed every 20 minutes

+3  A: 

You should probably use a cron job which schedules a task (Google cron jobs), and that can execute and run a MySQL Query on an interval

Kerry