Node is saved as draft in My Content >> Draft
-
To make Unique key as Primary
In SQL we have Unique Key and Primary Key
Unique key is the key in which no value gets repeated including null once
Primary key cannot be null and value must be unique
So for making Unique key a primary key we will make it not null it will act as primary key
Ex: create table student
(
stid int unique key not null,
stname varchar(50)
)
0 Comment(s)