Which of the following statement does not execute a trigger?

Which of the following statement does not execute a trigger? Correct Answer SELECT

The SELECT command does not execute a trigger. A trigger is only executed automatically by a DDL (CREATE, ALTER, DROP) statement or a DML (DELETE, INSERT, UPDATE) statement and since SELECT does not comes under any of this category, hence it does not execute a trigger.

Related Questions

Which of the following types of statement can trigger a trigger execution?