gpt4 book ai didi

hadoop - 通过 HQL 更改 hive 表中映射列中的一个键值

转载 作者:可可西里 更新时间:2023-11-01 16:39:24 25 4
gpt4 key购买 nike

我有一个 Hive 表,其架构如下,colmap 类型:

select
col
from table

col
{"name":"abc", "value":"val_1"}

我需要做的是将 val_1 更改为 val_2 并从中创建另一个表。

create table table_2 as
select
col -- TODO: need to do something here
from table

有什么建议吗?谢谢!

最佳答案

with t as (select map("name","abc","value","val_1") as col)
select map("name",col["name"],"value","val_2") as col
from t

+--------------------------------+
| col |
+--------------------------------+
| {"name":"abc","value":"val_2"} |
+--------------------------------+

关于hadoop - 通过 HQL 更改 hive 表中映射列中的一个键值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44672534/

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