How to Rename a Column

Renaming a column is very easy in Postgres, just do a:

alter table employee rename column last_bonus_date to last_bonus ;

IN THIS PAGE