How to obtain the automatic ID number of the newly inserted new record in SQL Server

Source: Internet
Author: User

 

---------------------------------------------------------------
Use [ident_current]
Usage: Select ident_current ('tablename ')
---------------------------------------------------------------
Select ident_current ('tablename') -- returns the last automatic ID of the current instance.
Select ident_incr ('tablename') -- returns the increment value.
Select ident_seed ('tablename') -- returns the seed value.

Return the next automatic number:
Select ident_current ('tablename') + (select ident_incr ('tablename '))

-- Create databases and tables
Create Database mydatabase
Use mydatabase

Create Table mytable
(
Id int identity (1, 1 ),
Name varchar (20)
)

-- Execute this SQL statement to check the values of the auto-incrementing column corresponding to the inserted record.
Insert into mytable values ('Li si ')
Select @ identity

Declare @ new_id int
Insert into test_id values ('hahaha ')
Select @ new_id = @ identity
Print 'closest ID is '+ Cast (@ new_id as nvarchar (10 ))
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.