PDF download Download Article PDF download Download Article

A primary key is a column in a relational database that's used to uniquely identify each record in a table. When selecting a primary key, you'll need to choose a column that contains unique values for all rows. Every single row must have a value in the primary key column, and the values must not change. If you can't find a natural primary key that fits all of the rules, you could create a surrogate key. This wikiHow teaches you how to select a primary key for your database.

  1. This means you'll want to choose a column that contains some sort of unique identifier that never repeats in other rows. If a column contains any values that are identical for more than one row, it should not be your primary key.[1]
    • For example, if you are building a database of employees and each employee has a unique employee number, you could use the column that contains the employee ID number as your primary key—however, you should only do this if there's no chance the same ID will be re-used in the future.[2]
    • You may want to consider using a composite key, which is a primary key that uses multiple columns. Combining more than one column into your key (e.g., combining DateofBirth, CountryofOrigin, and EmployeeID) reduces the chance of duplicate entries.
  2. Once you assign a column as the primary key, you can't change any of the values in that column. Choose something static—something you know you will never need to update.[3]
    • For example, in our employee ID example, you'd only want to use the employee ID column as the primary ID if there's no chance the employee will ever be assigned a different employee ID.
    • Other pieces of information that can change are peoples' names, addresses, phone numbers, and addresses. Avoid these when selecting a primary key.
    Advertisement
  3. Every row must have an identifier—there can be no null values the primary key column for any row.
    • For example, let's say you're creating a database containing patient information. Because social security numbers are unique and don't change, such a column might seem like a good candidate for a private key. However, you'd need a social security number entry for all patients—if a patient hasn't provided one, you won't be able to add them to the table if that column is your primary key.
  4. A natural key is a key that contains real data, such as a social security number or employee ID number—all of our previous examples are natural keys. It can be hard to find something that meets all of the aforementioned qualifiers! If you can't identify a column that would work as a (natural) primary key, try a surrogate key:
    • A surrogate key contains unique values that are generated when new records are entered. To use a surrogate key, you'd need to create a new column that doesn't reflect any real data—for example, if you have a list of customers, you might create a new column called CustomerID that you'll use exclusively as a unique database identifier for each customer.
    • In the CustomerID example, each time you enter a new customer into your database, you'd assign them a new CustomerID that would serve as their permanent unique identifier. You could use a number generator, or just add 1 to the previous value to make a unique new customer ID.
  5. Advertisement

Expert Q&A

Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement

Tips

Submit a Tip
All tip submissions are carefully reviewed before being published
Name
Please provide your name and last initial
Thanks for submitting a tip for review!

You Might Also Like

Create a SQL Server DatabaseCreating a Database With SQL Server Management Studio
Use Microsoft AccessThe Ultimate Guide to Using Microsoft Access
Delete Duplicate Records in OracleEverything You Need to Know About Removing Duplicate Records in Oracle
Create a Database in MySQLCreate a Database in MySQL
Import Excel Into AccessA Complete Guide on Importing Excel into Access & Formatting Your Data
Solve a Sudoku Play Sudoku & Solve Any Puzzle: Beginner & Advanced Tips
Create a Database from an Excel SpreadsheetCreate a Database from an Excel Spreadsheet
Use Vlookup With an Excel Spreadsheet Use VLOOKUP with an Excel Spreadsheet
Order Alphabetically in SQL Order Alphabetically in SQL
Write an IndexWrite an Index
Create a Secure PasswordCreate a Secure Password
Create an Encryption Algorithm Create an Encryption Algorithm
Solve Hard Sudoku PuzzlesSolve Hard Sudoku Puzzles
Enter Data in SPSSEnter Data in SPSS
Advertisement

About This Article

Nicole Levine, MFA
Written by:
wikiHow Technology Writer
This article was co-authored by wikiHow staff writer, Nicole Levine, MFA. Nicole Levine is a Technology Writer and Editor for wikiHow. She has more than 20 years of experience creating technical documentation and leading support teams at major web hosting and software companies. Nicole also holds an MFA in Creative Writing from Portland State University and teaches composition, fiction-writing, and zine-making at various institutions. This article has been viewed 27,075 times.
How helpful is this?
Co-authors: 5
Updated: October 25, 2023
Views: 27,075
Categories: Spreadsheets
Article SummaryX

1. Each primary key record must be unique.
2. The values in the primary key can never change.
3. No null values can exist in the primary key.
4. If you can't select a primary key that meets this criteria, create a surrogate key.

Did this summary help you?

Thanks to all authors for creating a page that has been read 27,075 times.

Is this article up to date?

Advertisement