Simple use of triggers (use a cursor to update multiple rows)

Source: Internet
Author: User

 

Create trigger [usageinsert] on [DBO]. [t_res_usage_info]
After insert // execute after insert
As
Begin
Declare every_use_cursor cursor local forward_only
Select res_typ from inserted // create a cursor
Declare @ myres_type_name varchar (20 );

Open every_use_cursor
Fetch next from every_use_cursor into @ myres_type_name

While @ fetch_status = 0 // judge the returned row
Begin

If @ myres_type_name is not null
Begin
If not exists (select res_type_name from t_res_type where res_type_name = @ myres_type_name)
Begin
Insert t_res_type (res_type_name, remark) values (@ myres_type_name ,'');
End;
End;

Fetch next from every_use_cursor into @ myres_type_name;
End;
Close every_use_cursor // close the cursor
Deallocate every_use_cursor // release the cursor
End;

 

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.