Answers for "postgres alter table remove column"

SQL
10

psql drop column

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

remove contraints command psql

ALTER TABLE table_name DROP CONSTRAINT constraint_name;
Posted by: Guest on August-01-2020

Code answers related to "postgres alter table remove column"

Code answers related to "SQL"

Browse Popular Code Answers by Language