49.9k views
2 votes
SQL triggers can be used when the DBMS receives a(n) ________ request.

1) INSERT
2) UPDATE
3) DELETE
4) A and B
5) A, B, and C

User Nyxz
by
8.6k points

1 Answer

7 votes

Final answer:

SQL triggers can be used in response to INSERT, UPDATE, and DELETE operations in a database. The correct answer to the question is option 5, which includes all three operations.

Step-by-step explanation:

SQL triggers are special types of stored procedures that automatically execute or fire when specific events occur in the database management system (DBMS). The events that can initiate triggers include INSERT, UPDATE, and DELETE operations. Therefore, the correct answer to the question 'SQL triggers can be used when the DBMS receives a(n) ________ request' is option 5, which encompasses all the mentioned operations: A, B, and C.

User Ahmet Arslan
by
8.3k points