Answers for "postgresql drop column constraint"

SQL
10

psql drop column

ALTER TABLE table_name 
DROP COLUMN column_name;
Posted by: Guest on July-05-2020
2

drop constraint psql

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

Code answers related to "postgresql drop column constraint"

Code answers related to "SQL"

Browse Popular Code Answers by Language