postgres alter table rename code example
Example 1: rename column postgres
ALTER TABLE customers
RENAME COLUMN name TO customer_name;
ALTER TABLE customers
RENAME COLUMN phone TO contact_phone;
Example 2: how to update column name in psql
ALTER TABLE order_details
RENAME TO order_information;