更换字段名
alter table 表名 rename column 字段名 to 新字段名;
更换表名
alter table 表名 rename to 新表名;
更改字段长度
alter table 表名 alter column 字段名 type VARCHAR(1024);
更改字段类型
alter table 表名 alter column 字段名 type numeric(50,0) USING 字段名::numeric(50,0);
更换字段名
alter table 表名 rename column 字段名 to 新字段名;
更换表名
alter table 表名 rename to 新表名;
更改字段长度
alter table 表名 alter column 字段名 type VARCHAR(1024);
更改字段类型
alter table 表名 alter column 字段名 type numeric(50,0) USING 字段名::numeric(50,0);