gpt4 book ai didi

sql - 如何修改postgresql中的类型?

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

我有一个类型定义为:

CREATE TYPE New_A AS
(id integer,
id_new integer,
arrived date,
sum numeric);

我想将 arriveddate 类型更改为 timestamp without time zone 类型

我试过:

ALTER TYPE New_A SET arrived TO timestamp without time zone

但它不起作用。它给出:

ERROR: syntax error at or near "arrived"

最佳答案

您可以使用alter attribute 子句:

ALTER TYPE new_a ALTER ATTRIBUTE arrived TYPE timestamp without time zone;

详情请引用the documentation .

关于sql - 如何修改postgresql中的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33094905/

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