Answers for "drop unique constraint pgsql"

SQL
4

mysql remove unique constraint

ALTER TABLE tbl_name DROP INDEX index_name
Posted by: Guest on December-04-2019
1

how to drop a unique constraint in sql

SHOW CREATE TABLE [tableName]
-- Find the constraintID after CONSTRAINT 'constraintID'
ALTER TABLE [tableName] DROP FOREIGN KEY constraintID
Posted by: Guest on October-29-2020

Code answers related to "drop unique constraint pgsql"

Code answers related to "SQL"

Browse Popular Code Answers by Language