gpt4 book ai didi

hive - 在 Hive 中更改列数据类型

转载 作者:行者123 更新时间:2023-12-04 17:46:17 33 4
gpt4 key购买 nike

我们需要将表列数据类型从字符串更改为日期。在尝试执行操作时出现以下错误。你能帮忙吗?

hive> describe sales_staging;

OK

cust_id string prod_num string
qty int sale_date string

sale_id string Time taken: 0.151 seconds, Fetched: 5 row(s)

hive> alter table sales_staging CHANGE sale_date sale_date DATE ;

FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. Unable to alter table. The following columns have types incompatible with the existing columns in their respective positions :sale_date

hive>

最佳答案

您不能为要更改其数据类型的列指定相同的名称。像这样使用

ALTER TABLE sales_staging CHANGE sale_date sale_date_new DATE;

引用这个Apache Hive Wiki

关于hive - 在 Hive 中更改列数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37501437/

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