postgresql alter table add column after code example
Example 1: alter column in table postgres
ALTER TABLE table_name
ALTER COLUMN column_name TYPE column_definition;
Example 2: alter table add column postgres
Alter Postgres Table
ALTER TABLE table_name
ALTER COLUMN column_name TYPE column_definition;
Alter Postgres Table