PostgreSQL 修改字段

要修改的列的字段类型应该是一样的。这样比较保险,你试一下面的脚本
我试着没问题,在Pg83上。
--drop table 成绩表;
create table 成绩表 (姓名 varchar(20), 成绩 varchar(20));
insert into 成绩表 values('张三','80');
insert into 成绩表 values('李四','65');
select * from 成绩表
select * from pg_attribute where attrelid =
(select oid from pg_class where relname='成绩表') and attnum>-1;
update pg_attribute set attnum=3 where attname='姓名';
update pg_attribute set attnum=1 where attname='成绩';
update pg_attribute set attnum=2 where attname='姓名';
select * from 成绩表;
再一个,修改系统表应该是比较危险的。只是提供一种探索可能性的方法,保险的做法还是倒表。

你可能感兴趣的:(脚本,PostgreSQL)