SyntaxFix
Write A Post
Hire A Developer
Questions
Yes. The only way would be to drop the constraint with an Alter table then recreate it.
ALTER TABLE <Table_Name> DROP CONSTRAINT <constraint_name> ALTER TABLE <Table_Name> ADD CONSTRAINT <constraint_name> PRIMARY KEY (<Column1>,<Column2>)