Reputation: 43
I have a database on phpMyAdmin and I want to reset certain columns to the default value (0
) every day at 7:00PM automatically.
Can any one help?
Upvotes: 0
Views: 443
Reputation: 3836
Set up a cron job that executes an sql script in which you specify the sql code that resets the columns in question.
Upvotes: 1