What is the relationship between a trigger and a table or view?

What is the relationship between a trigger and a table or view?

A trigger is a specific program that is kept inside a database management system. It waits for a specific event to take place and as it takes place, the “trigger” program is executed. A Trigger is associate with only one table or view and not more than that. The trigger program is executed when it notices any update made to the table the trigger is associated with.