| |

What is the difference between PRIMARY KEY and UNIQUE constraints?
Answer:
Both PRIMARY KEY constraint and UNIQUE constraint uses to enforce Entity
integrity (defines a row as a unique entity for a particular table), but
primary keys do not allow null values.
|
|