Answers for "update table which has primary key"

SQL
2

change primary key sql

ALTER TABLE <Table_Name>
DROP CONSTRAINT <constraint_name>

ALTER TABLE <Table_Name>
ADD CONSTRAINT <constraint_name> PRIMARY KEY (<Column1>,<Column2>)
Posted by: Guest on September-21-2020

Code answers related to "update table which has primary key"

Code answers related to "SQL"

Browse Popular Code Answers by Language