I created a table like this:
CREATE TABLE Persons
(
P_Id int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255),
PRIMARY KEY (P_Id)
)
but I can’t understand the purpose of the primary key
PRIMARY KEY (P_Id)
in that table.
From MSDN: