Definition: The PRIMARY KEY constraint uniquely identifies each record in a table. Primary keys must contain unique values, and cannot contain NULL values. A table can have only one primary key, which may consist of single or multiple fields.
Example:
CREATE TABLE Orders (
OrderID int PRIMARY KEY,
OrderDate date NOT NULL,
MemberID int,
Amount decimal NOT NULL
);
Explanation: OrderID serves as the primary key and uniquely identifies each order in the Orders table.