Mssqlsql returns the inserted ID

Source: Internet
Author: User
Mssqlsql returns the inserted ID

Mssql SQL returns the inserted ID

Mssql SQL returns the inserted id

Set xact_abort on
Begin tran
Declare @ id int
Insert table a values ('small 5 ')

Select @ id = scope_identity ()
Insert table B values (@ id,'ll ')
Insert table c values (@ id, 'ee ')
Commit


//

Create trigger tri _ Table
On Table
For insert
As
Begin
Declare @ id int
Select @ id = id from isnerted
Insert table B values (@ id,'ll ')
Insert table c values (@ id, 'ee ')
End
//

Create table dbo. tbtest (
Id int identity (1, 1) not null
, Value varchar (50)
)


-- The following statement is executed several times, which can be very effective.

Declare @ id int -- get the new id

Insert into dbo. tbtest (value) values ('aaa ')

Set @ id = scope_identity ()

Select @ id

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.