「PostgreSQL」特定のカラム後に追加方法メモ
1.カラムの追加
alter table テーブル名 add column カラム名;
例 alter table emp_tbl add column stu_id;
2.特定のカラムの後に追加
alter table テーブル名 add column カラム名 after 前のカラム名;
例 alter table emp_tbl add column stu_name after stu_id;
3.カラムの削除
alter table テーブル名 drop column カラム名;
例 alter tableemp_tbl drop column stu_age;