Answers for "remove clumn from table postgresql"

SQL
10

psql drop column

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

delete entries in postgresql

DELETE FROM table
USING another_table
WHERE table.id = another_table.id;
Posted by: Guest on May-19-2020

Code answers related to "remove clumn from table postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language