¿Esta es tu empresa?
What is the difference between a Primary Key and a Unique Key in a database?
Anónimo
: A Primary Key uniquely identifies each record in a table and cannot contain NULL values. A table can have only one Primary Key. On the other hand, a Unique Key also ensures that all values in a column are unique but can accept a single NULL value. A table can have multiple Unique Keys.