Is it possible to chain triggers on multiple tables?
Primary table : Questions
id int
Secondary table : Answers
id int
id_parent int
Additional tables
AnswersVotes
id_answer int
AnswersViews
id_answer int
I need to create chain of actions if I delete a row from table questions
Is it possible to create trigger on table question which would delete rows in answers and also add another trigger on table answers which would delete rows in answersvotes and also answerviews?
Or do I need to add all delete calls in first trigger?