how to give primary key in sql with already existing 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 existing table sql
ALTER TABLE `tblauto`
ADD PRIMARY KEY (`id`);
--