SQL SERVER TRIGGERS In SQL Server, a trigger is a special type of stored procedure that is automatically executed in response to certain events occurring in the database. Triggers can be used to ...
In this blog we illustrate the types of a triggers in SQL. Triggers are those which executes automatically when some event arise with their related tables in database. Firstly, We discuss AFTER ...
--now inserting a new row in tbl_student and you can see a trigger gets fired automatically insert into tbl_student values ('Anas', 'Male', 7, 3000); --now i want to make some changes in my trigger by ...
Automating routine tasks is the hallmark of a great application. This automation allows the developer to tackle more important issues. Triggers provide automation to database developers. This article ...