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 Réponse
+ 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 .