TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
SQL Server Transact Basic to Expert - Primary Key Adding to Existing table
Karthikeyan Anbarasan
May 10, 2011
3
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
SQL Server Transact Basic to Expert - Primary Key Adding to Existing table
This blog shows how to add a primary key constraint to an existing table
Syntax:
ALter table tablename
Add Constraint(PK_tablename)
Primary Key (ColumnName)
Example:
Alter table emptable
Add Constraint(Pk_Emptable)
Primary Key(empid)
SQL Server Transact Basic to Expert - Primary Key Adding to Existing table
Next Recommended Reading
SQL Server Transact Basic to Expert - Add Unique Constraints to Existing Table