The field that acts as a unique identifier for records in a database is the Primary Key . It ensures that each record has a unique identifier and is critical for data integrity. Other keys, like the Unique Key and Foreign Key , serve different purposes in database management. ;
The correct answer is Primary Key , which serves as a unique identifier for records in a database, ensuring data integrity by preventing duplicate entries. Each entry must have a unique value, and it cannot contain null values. This key is crucial for accurately retrieving and managing data in the database system.
;