I am trying to add primary key to newly added column in existing table name Product_Details.
Product_Details
New Column added: Product_Detail_ID (int
Product_Detail_ID
int
k. friend command: sql> alter table tablename add primary key(col_name);
ex: alter table pk_Product_Detils add primary key(Product_Detail_ID);