gpt4 book ai didi

PostgreSQL-错误 : column "date" cannot be cast to type date

转载 作者:行者123 更新时间:2023-11-29 11:22:46 29 4
gpt4 key购买 nike

我想将我的 PostgreSQL 数据库中的特定列从 character_varying 类型转换为类型日期。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);

关于PostgreSQL-错误 : column "date" cannot be cast to type date,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5967022/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com