// How we can create a Primary Key
CREATE TABLE student3
(
rollno int NOT NULL PRIMARY KEY,
name varchar(255) NOT NULL,
class varchar(255)
)
CREATE TABLE student3
(
rollno int NOT NULL PRIMARY KEY,
name varchar(255) NOT NULL,
class varchar(255)
)
1 comment:
thanks sir...primary key is an important factor in database design....
Post a Comment