因为数据库一开始用的mysql 现在改成postgresql,数据迁移或多或少出现问题,
想把postgre的int2类型改为bool(布尔)类型报错。那就只能换种方式了。
语句解释:
ALTER TABLE 表名 ALTER COLUMN 字段名 TYPE 需要转换的类型 USING 字段名::需要转换的类型;
1;用的navicat工具,修改ce字段为bool类型
执行sql
ALTER TABLE ceshi ALTER COLUMN ce TYPE VARCHAR USING ce ::VARCHAR;
update ceshi set ce='true' where ce='1';
update ceshi set ce='false' where ce='0';
ALTER TABLE ceshi ALTER COLUMN ce TYPE bool USING ce ::bool;
完成看效果
中间的更新语句效果
温馨提示:t和f就是true和false的缩写
或者这样写
ALTER TABLE ceshi ALTER COLUMN zai TYPE VARCHAR USING zai ::VARCHAR;
ALTER TABLE ceshi ALTER COLUMN zai TYPE bool USING zai ::bool;
update ceshi set zai='true' where zai='1';
update ceshi set zai='false' where zai='0';