primary-keys-vs-foreign-keys-vs-unique-keys-in-mysql

In the world of relational databases, MySQL is a popular choice. One of its core features is the ability to define different types of keys to ensure data integrity and establish relationships between tables. In this article, we’ll explore three key types in MySQL: Primary Keys, Foreign Keys, and Unique Keys, highlighting their differences, use cases, and the crucial roles they play in designing a well-structured database.

Primary Keys

Primary keys are the cornerstone of a well-structured database. They serve as unique identifiers for each record within a table. Here are the key characteristics of primary keys:

  • Uniqueness: Every value in a primary key column must be unique within the table.
  • Non-null: The primary key column cannot contain NULL values. This ensures that each record has a unique identifier.
  • Indexed: MySQL automatically creates an index on the primary key column for fast data retrieval.
  • Single Column or Composite Key: A primary key can be a single column or a combination of columns that, when taken together, must be unique.

Use Cases:

  • Identification: Primary keys are used to uniquely identify records in a table.
  • Joining Tables: Primary keys are often used as references in foreign keys to establish relationships between tables.

Example: Consider a “Customers” table, where the “CustomerID” column is the primary key, uniquely identifying each customer record.

CREATE TABLE Customers (
    CustomerID INT PRIMARY KEY,
    FirstName VARCHAR(50),
    LastName VARCHAR(50)
);

Foreign Keys

Foreign keys are used to create relationships between tables. They establish connections between data in one table to data in another, enforcing referential integrity. Key features of foreign keys include:

  • Referential Integrity: Foreign keys ensure that data in the referring table (child) corresponds to data in the referenced table (parent).
  • Data Consistency: Foreign keys prevent or cascade changes that could lead to data inconsistencies.
  • Multiple Columns: A foreign key can consist of one or multiple columns, aligning with the parent table’s primary key.

Use Cases:

  • Relationships: Foreign keys establish relationships between tables, reflecting how data is connected.
  • Data Integrity: They maintain data consistency by ensuring that changes in one table do not leave orphaned records in another.

Example: Suppose you have an “Orders” table with a foreign key linking it to the “Customers” table. The “CustomerID” in “Orders” references the “CustomerID” in “Customers,” ensuring that each order belongs to a valid customer.

CREATE TABLE Orders (
    OrderID INT PRIMARY KEY,
    CustomerID INT,
    OrderDate DATE,
    FOREIGN KEY (CustomerID) REFERENCES Customers(CustomerID)
);

Unique Keys

Unique keys are similar to primary keys but serve a slightly different purpose. They ensure the uniqueness of values in one or more columns without requiring them to be the primary means of identifying records. Key features of unique keys include:

  • Uniqueness: Unique keys guarantee that values in the specified column(s) are unique within the table.
  • Null Values: Unlike primary keys, unique keys allow one NULL value per unique key constraint. This means that a column can have unique values and accept one NULL.

Use Cases:

  • Alternate Keys: Unique keys can be used for columns that need to have unique values but are not the primary means of identifying records.
  • Data Integrity: They prevent duplicate values in specified columns while allowing one NULL value.

Example: In a “Products” table, you may have a unique key on the “ProductCode” column to ensure that product codes are unique, but this column isn’t the primary key.

CREATE TABLE Products (
    ProductID INT PRIMARY KEY,
    ProductCode VARCHAR(10) UNIQUE,
    ProductName VARCHAR(100)
);

Key Takeaways

  • Primary keys are unique identifiers for records and are essential for data integrity.
  • Foreign keys establish relationships between tables and enforce referential integrity.
  • Unique keys ensure uniqueness in specified columns and are often used for alternate keys.

When designing your MySQL database, it’s crucial to choose the appropriate key type for each scenario. Primary keys, foreign keys, and unique keys work in tandem to maintain data integrity and define relationships, creating a solid foundation for a well-structured database.

By Abhishek K.

Author is a Architect by profession. This blog is to share his experience and give back to the community what he learned throughout his career.