Sybase CREATE Trigger

Source: Internet
Author: User
Tags sybase

Triggers can be automatically manipulated. The trigger works as long as the data is modified (whether it's data entry or action by the application). Triggers are designed for one or more data modification operations (update, insert, and delete) and are executed once for each SQL statement.

The following creates a trigger for a history_record_bak table

Create TRIGGER T1
On History_record_bak
For INSERT, UPDATE, delete
As
Print "Now modify the History_record_bak!!!!!!!!!!!!!!!!!!!!!!!!!!"
Go

When you do an INSERT, UPDATE, delete operation on this table, you will be prompted with "now modify the History_record_bakthe!!!!!!!!!!!!!!!!!!!!!!!!!!" and of course this sentence, You can change the operation to another table.

Sybase CREATE Trigger

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.