0
What's the difference between (NOT NULL + UNIQUIE) and Primary key.?
Is it provided for saving time and space? I means just for ease?
1 Answer
+ 10
â In unique constraint U can have null values , but in primary key constraint U can't have null values .
â Duplicate values is not allowed in both .
â U can say Primary key cons. = Unique & not-null together .