如何在PostgreSQL 8.4中将字段数据类型从字符更改为数字

前端之家收集整理的这篇文章主要介绍了如何在PostgreSQL 8.4中将字段数据类型从字符更改为数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用以下查询
ALTER TABLE presales ALTER COLUMN code TYPE numeric(10,0);

将列的数据类型从字符(20)更改为数字(10,0),但我得到错误

column “code” cannot be cast to type numeric

@H_404_9@
@H_404_9@
您可以尝试使用 USING

The optional USING clause specifies how to compute the new column value from the old; if omitted,the default conversion is the same as an assignment cast from old data type to new. A USING clause must be provided if there is no implicit or assignment cast from old to new type.

所以这可能工作(取决于您的数据):

alter table presales alter column code type numeric(10,0) using code::numeric;
-- Or if you prefer standard casting...
alter table presales alter column code type numeric(10,0) using cast(code as numeric);

这将失败,如果你有任何代码,不能转换为数字;如果USING失败,您必须在更改列类型之前手动清理非数字数据。

@H_404_9@ 原文链接:https://www.f2er.com/postgresql/193849.html

猜你在找的Postgre SQL相关文章