Answers for "sql drop primary key if exists"

SQL
2

sql drop primary key

ALTER TABLE [table_name] DROP CONSTRAINT [primary_key_name]
Posted by: Guest on June-01-2021
0

remove primary key from table

ALTER TABLE Persons

DROP PRIMARY KEY;
Posted by: Guest on June-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language