SQL Server manually inserts an ID column

Source: Internet
Author: User

If we insert a value in the ID column, for example:

Insert member (id, username) values (10, 'admin ')

The query analyzer will return an error message:
Reference Content Server: Message 544, level 16, status 1, Row 1 when IDENTITY_Insert is set to OFF, explicit values cannot be inserted into the identification column in The 'member' table.

In some cases, we need to manually insert the value of the ID column. For example, after deleting some records, the ID column is not consecutive, and we want to complete it. We can use a switch to turn our desires into reality:

SET IDENTITY_Insert [TableName] ON

Write in the query analyzer as follows:
SET IDENTITY_Insert member ON insert member (id, username) values (1, 'admin') SET IDENTITY_Insert member OFF

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.