Which key uniquely identifies each record in a database table?
- Foreign Key
- Candidate Key
- Primary Key
- Composite Key
Answer: Primary Key
Primary Key is a column or set of columns that uniquely identifies each row in a table. It cannot contain NULL values and must be unique. Foreign keys establish relationships between tables, while candidate keys are potential primary keys.