Primary Key:
A Primary Key is a field (or column) in a database table that uniquely identifies each record (row) in that table. It must contain unique values and cannot contain NULL values.
Key Characteristics:
Example:
In a Students table, Student_ID can serve as the primary key because each student has a unique ID.
| Student_ID (Primary Key) | Name | Age | Grade |
|---|---|---|---|
| 101 | Alice | 15 | 10 |
| 102 | Bob | 16 | 11 |
| 103 | Charlie | 15 | 10 |
Final Answer:
\[ \boxed{\text{A primary key is a unique identifier for each record in a database table.}} \]