Thursday, October 24, 2013

Primary Key

// How we can create a Primary Key

CREATE TABLE student3
(
rollno int NOT NULL PRIMARY KEY,
name varchar(255) NOT NULL,
class varchar(255)
)

1 comment:

Unknown said...

thanks sir...primary key is an important factor in database design....