一、查询表的关联关系
SELECT relname, relfilenode FROM pg_class where relname='a_0_risk_census_city_total'
二、查询字段的排序
SELECT attrelid, attname, attnum FROM pg_attribute WHERE attrelid=52980;
三、更新排序
update pg_attribute set attnum=3 where attrelid =2549250 and attnum=2; update pg_attribute set attnum=2 where attrelid =2549250 and attnum=1; update pg_attribute set attnum=1 where attrelid =2549250 and attnum=3
一、首先创建数据表结构
通过SQL脚本来添加,赋值之前的创建脚本,然后将正确的字段顺序调整,执行脚本
二、导出之前数据表记录
三、通过导入数据操作,导入之前的数据
一、首先创建数据表结构
通过SQL脚本来添加,赋值之前的创建脚本,然后将正确的字段顺序调整,执行脚本
二、导出之前数据表记录
三、将之前导出的数据通过《我的ABC软件工具箱》中的文本拆分,进行分割
四、通过导入数据操作,导入之前分割的数据