SQL Server Code sets the primary key and automatically grows

Source: Internet
Author: User
Create a new data table, set Userid as the primary key, and automatically increase createtableT_UserLogin (UserIdintnotnullprimarykeyidentity (), UserNamenvarchar (50) notnull, Passvarchar (50) notnull, set Userid as the primary key and automatically grow altertablet

Create a new data table, set Userid as the primary key, and automatically increase create table T_UserLogin (UserId int not null primary key identity (), UserName nvarchar (50) not null, Pass varchar (50) not null) modify a data table that has been created, set Userid as the primary key, and automatically add alter table t

Create a new data table, set Userid as the primary key, and automatically increase

Create table T_UserLogin (UserId int not null primary key identity (1, 1), UserName nvarchar (50) not null, Pass varchar (50) not null)

Modify a data table that has been created, set Userid as the primary key, and automatically grow

Alter table tb alter column id int not null

Alter table tb add constraint pkid primary key (id)

Delete primary key

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)

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.