A foreign key is a field in one table that uniquely identifies a row in another table, linking to the primary key of that table.

For example, DepartmentID in the Employees table links to DepartmentID in the Departments table.

Foreign keys establish relationships between tables and maintain referential integrity by ensuring valid connections between records.

Departments Table

DepartmentIDDepartmentName
1Human Resources
2IT
3Marketing

Employees Table

EmployeeIDEmployeeNameDepartmentID
101Alice1
102Bob2
103Charlie1
104Dana3