add primary key with alter table code example
Example 1: add primary key to existing table sql
alter table Persion add primary key (persionId,Pname,PMID)
Example 2: add primary key to table
ALTER TABLE Persons
ADD PRIMARY KEY (ID);
alter table Persion add primary key (persionId,Pname,PMID)
ALTER TABLE Persons
ADD PRIMARY KEY (ID);