primaryKey
A primaryKey, commonly referred to as a primary key in relational databases, is a column or set of columns in a table that uniquely identifies each row. It serves as the principal means of locating records and supports entity integrity by preventing duplicate or missing identifiers.
Key properties include uniqueness and non-nullability. Each row must have a unique value for the primary key,
Implementation and usage: In SQL, a primary key is declared with a PRIMARY KEY constraint on the
Design considerations: Some designs favor surrogate keys, which are artificial numeric identifiers used solely to identify