+ 4
what are triggers in sql
4 Antworten
+ 3
triggers are those programme which are executed when either deletion or creation or modification is done on data
+ 1
they are like watchman looking upon tables of database. If any modification done in it makes a indirect action accordingly
0
creation,insert,
0
A trigger is a special kind of stored procedure that automatically executes when an event occurs in the database server. DML triggers execute when a user tries to modify data through a data manipulation language (DML) event. DML events are INSERT, UPDATE or DELETE statements on a table or view.