gpt4 book ai didi

hive - 从 Hive 中的现有表创建新表

转载 作者:行者123 更新时间:2023-12-03 23:07:00 27 4
gpt4 key购买 nike

我正在尝试使用 Hive 查询使用现有表创建一个新表。
在创建新表时,我想添加一个新列并为所有行插入当前时间戳。
例如:

退出表:

|user_id|user_name|user_address|
|1001 |userName |address |

新表:
|user_id|user_name|user_address|creation_date|
|1001 |userName |address | 123421342134|

我正在尝试使用 JDBCTemplate 执行此查询。

我试过的:
Create table newTable Select * from existingtable;

但这会复制使用旧值创建新表,我想在表创建过程中添加新列和插入值。

请帮忙。

最佳答案

您可以像这样添加新列:

create table newTable AS
select s.*, unix_timestamp(current_timestamp) as creation_date
from existingtable s;

关于hive - 从 Hive 中的现有表创建新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61928475/

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