SQL Server sets primary key auto-increment columns (implemented using SQL statements)

Source: Internet
Author: User

1. Create a new data table with the field id. Set the id as the primary key. Copy codeThe Code is as follows: create table tb (id int, constraint pkid primary key (id ))
Create table tb (id int primary key)

2. Create a new data table with the field id. Set the id as the primary key and the id is automatically numbered.Copy codeThe Code is as follows: create table tb (id int identity (1, 1), constraint pkid primary key (id ))
Create table tb (id int identity (1, 1) primary key)

3. A data table has been created with the field id, which sets the id as the primary key.Copy codeThe Code is as follows: alter table tb alter column id int not null
Alter table tb add constraint pkid primary key (id)

4. Delete the primary keyCopy codeThe Code is as follows: Declare @ Pk varChar (100 );
Select @ Pk = Name from sysobjects where Parent_Obj = OBJECT_ID ('tb') and xtype = 'pk ';
If @ Pk is not null
Exec ('alter table tb drop' + @ Pk)

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.