Like we all know.... Oracle supports triggers at a certain event.... Does Mysql support triggers... I want to send an email at a particular time... say every month. Can it be done by MySQL...
MySQL doesn't let you do that. You would do that by using crontab. You can mix crontab with C/PHP/Bash to achieve your desired results.
MySQL have the concept of triggers. My be these links can help you http://dev.mysql.com/doc/refman/5.0/en/using-triggers.html http://dev.mysql.com/doc/refman/5.0/en/create-trigger.html Thank You -Sandhya-