The automatic ID of the SQL Server insert record and the next automatic ID returned

Source: Internet
Author: User

. Scope_identity () is absolutely reliable and can be used in the stored procedure, even the trigger does not need to be created, without concurrency conflicts.

Select ident_current ('tablename') -- returns the last tag value generated in the specified table.
Select ident_incr ('tablename') -- returns the increment value of the marked field in the specified table.
Select ident_seed ('tablename') -- returns the seed value of the marked field in the specified table.

Returns the automatic number of the last inserted record.

Select ident_current ('tablename ')

Return the next automatic number:

 

Select ident_current ('tablename') + (select ident_incr ('tablename') Select @ identity -- return the last tag value generated in all tables in the current session

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.