Showing posts with label How to create primary key in sql. Show all posts
Showing posts with label How to create primary key in sql. Show all posts

Saturday, 14 May 2016

How to create primary key in sql

Client Table
(
Client _Id int NOT NULL PRIMARY KEY,
Name varchar(50) NOT NULL,
Address varchar(250),
City varchar(15)
)

Client ID is a primary key.