Answers for "drop column in postgres where id"

SQL
12

psql drop column

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

postgres drop column if exists

ALTER TABLE table_name 
DROP COLUMN IF EXISTS column_name;
Posted by: Guest on January-02-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language