delete one field in psql table postgres code example
Example 1: psql drop field
ALTER TABLE table_name DROP COLUMN column_name;
Example 2: delete entries in postgresql
DELETE FROM table WHERE condition;
ALTER TABLE table_name DROP COLUMN column_name;
DELETE FROM table WHERE condition;