A primary key is the column or columns that contain values that uniquely identify each row in a table.
sandhyamini Answered question December 18, 2023
A primary key in a relational database is a unique identifier for each record in a table. It ensures that each row has a distinct and non-null value, allowing for efficient data retrieval and maintaining data integrity. The primary key can be a single column or a combination of columns, known as a composite key.
Riya Answered question December 18, 2023
Every record in a table is uniquely identified by the PRIMARY KEY constraint. Primary keys cannot have NULL values in them; instead, they must have UNIQUE values. There can only be ONE primary key per table, and it can include one or more columns (fields) in the key.
Vishalini.R Answered question December 18, 2023
