How to write SQL Server triggers in detail

Source: Internet
Author: User

In SQL Server is a certain operation on a table, triggering a certain condition, thus executing a program. A trigger is a special stored procedure.
There are three common triggers: Apply to insert, Update, Delete event, respectively.

Learn a key knowledge before you write. Two pro tables used by triggers: Deleted, Inserted.

Deleted and Inserted store the "old record" and "new record" that triggered the event table, respectively.

An update process can be thought of as: Generate a new record to the inserted table, copy the old record to the deleted table, and then delete the original table record and write the record.

As an example:

Create trigger [trigger name]
on [dbo]. [Original Table]
For delete
As

DECLARE @id int
Select @id =autoid from inserted
Delete from video_002 where


This article is from the "Shadow of War" blog, be sure to keep this source http://rmlifejun.blog.51cto.com/7683304/1543271

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.