sql alter table add primary key 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 existing table sql
ALTER TABLE `tblauto`
ADD PRIMARY KEY (`id`);
--
Example 3: sql server add primary key to existing table with data
ALTER TABLE Production.TransactionHistoryArchive
ADD CONSTRAINT PK_TransactionHistoryArchive_TransactionID PRIMARY KEY CLUSTERED (TransactionID);