Postgres将列整数更改为布尔值

时间:2009-11-16 05:50:30

标签: database postgresql

我有一个INTEGER NOT NULL DEFAULT 0的字段,我需要将其更改为bool。

这就是我正在使用的:

ALTER TABLE mytabe 
ALTER mycolumn TYPE bool 
USING 
    CASE 
        WHEN 0 THEN FALSE 
        ELSE TRUE 
    END;

但我得到了:

ERROR:  argument of CASE/WHEN must be type boolean, not type integer

********** Error **********

ERROR: argument of CASE/WHEN must be type boolean, not type integer
SQL state: 42804

有什么想法吗?

感谢。

2 个答案:

答案 0 :(得分:77)

试试这个:

ALTER TABLE mytabe ALTER COLUMN mycolumn DROP DEFAULT;
ALTER TABLE mytabe ALTER mycolumn TYPE bool USING CASE WHEN mycolumn=0 THEN FALSE ELSE TRUE END;
ALTER TABLE mytabe ALTER COLUMN mycolumn SET DEFAULT FALSE;

首先需要删除约束(因为它不是布尔值),其次你的CASE语句在语法上是错误的。

答案 1 :(得分:9)

Postgres可以自动将整数转换为布尔值。关键短语是

using some_col_name::boolean
-- here some_col_name is the column you want to do type change

上面的答案是正确的,帮助我只是一个修改,而不是我使用类型铸造的案例

ALTER TABLE mytabe ALTER COLUMN mycolumn DROP DEFAULT;
ALTER TABLE mytabe ALTER mycolumn TYPE bool USING mycolumn::boolean;
ALTER TABLE mytabe ALTER COLUMN mycolumn SET DEFAULT FALSE;