update table name in postgresql code example
Example 1: rename table postgres
ALTER TABLE table_name
RENAME TO new_table_name;
Example 2: how to update column name in psql
ALTER TABLE table_name
RENAME COLUMN old_name TO new_name;
Example 3: how to update column name in psql
ALTER TABLE order_details
DROP COLUMN notes;