primary key database code example
Example 1: what is primary key
PRIMARY KEY -- unique identifier for the entire row of record in a table
-- can not be null and must be unique
Example 2: create id to primary using query
ALTER TABLE lead_offer_notes ADD PRIMARY KEY (id);