如何使用插入命令在配置单元中插入当前日期
Posted
技术标签:
【中文标题】如何使用插入命令在配置单元中插入当前日期【英文标题】:How to insert current date in hive using insert command 【发布时间】:2020-12-17 11:17:39 【问题描述】:insert into kb values(select current_date(),select current_timestamp());
select * from kb;
它给出了错误。
【问题讨论】:
【参考方案1】:使用插入...选择:
insert into table kb select current_date(), current_timestamp();
阅读language manual。
【讨论】:
第二个查询(插入表 kb 值 (current_date, current_timestamp); )不工作显示错误:编译语句时出错:FAILED:SemanticException [错误 10293]:无法为插入值/值中不支持 TOK_FUNCTION 类型的表达式 @BhargavaRamkhythepalli 是的,也检查过,确实不起作用。唯一的选择是 INSERT ... SELECT 然后以上是关于如何使用插入命令在配置单元中插入当前日期的主要内容,如果未能解决你的问题,请参考以下文章
使用命令“插入覆盖目录”使用配置单元导出数据时如何打印输出文件大小
如何插入配置单元表,按从临时表读取的日期进行分区? [复制]
如何在postgresql插入查询中插入当前日期时间[重复]