我在 PostgreSQL 中有一个表,其中一列“vat”具有类型money
,但我想将其更改为decimal
。
我该怎么做?
我试过:
alter table my_table alter column vat type decimal;
但我得到这个错误:
ERROR: column "vat" cannot be cast to type numeric
有什么建议么?
我在 PostgreSQL 中有一个表,其中一列“vat”具有类型money
,但我想将其更改为decimal
。
我该怎么做?
我试过:
alter table my_table alter column vat type decimal;
但我得到这个错误:
ERROR: column "vat" cannot be cast to type numeric
有什么建议么?
尝试按照文档
USING
中的描述提供子句: