postgresql alter table add column comment code example
Example 1: alter table add column psql
ALTER TABLE table_name
ADD column_name data_type column_constraint;
Example 2: alter table add column postgres
Alter Postgres Table
ALTER TABLE table_name
ADD column_name data_type column_constraint;
Alter Postgres Table