Answers for "postgres DROP and create contraint"

SQL
4

postgres DROP and create contraint

ALTER TABLE table_name
ADD CONSTRAINT constraint_name UNIQUE (column1, column2, ... column_n);
Posted by: Guest on January-14-2021
1

postgres DROP and create contraint

ALTER TABLE table_name
DROP CONSTRAINT constraint_name;
Posted by: Guest on June-09-2021

Code answers related to "postgres DROP and create contraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language