PostgreSQL – 错误:列“日期”无法强制转换为类型日期

前端之家收集整理的这篇文章主要介绍了PostgreSQL – 错误:列“日期”无法强制转换为类型日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的Postgresql数据库中将特定列从character_varying类型转换为类型date.
PHPPgAdmin给我以下错误

ERROR: column “date” cannot be cast
to type date

In Statement: ALTER TABLE
“public”.”tablename” ALTER COLUMN
“date” TYPE date

我该怎么办 ?
谢谢

您可能需要先将其转换为文本:
alter table "foo" alter column "date" type date using ("date"::text::date);
原文链接:https://www.f2er.com/postgresql/192757.html

猜你在找的Postgre SQL相关文章