Answer: Suppose,i want to create table called project_master and to assign a primary key to ID column,just give primary key after datatype as
create table Project_Master
(
project_id int primary key,
project_name varchar(50)
)
Asked In: Many Interviews |
Alert Moderator