码迷,mamicode.com
首页 > 其他好文 > 详细

Hive 中的分号问题

时间:2016-08-23 19:03:35      阅读:1275      评论:0      收藏:0      [点我收藏+]

标签:

1.  hive表中有一列值,是以 分号 ; 为分隔符连接存储的

1470047164;1470047628;1470049068;1470048978;1470048922;1470047658;1470047628;1470047628;1470047778;

2. 使用sql语句在HUE里面直接以 ; 分隔查询并无异常。

select test.thedate
,time_stamp1
from
(select thedate
,time_stamp
from my_table
where dt=‘2016-08-10‘
)test
lateral view explode(split(time_stamp,‘;‘)) t as time_stamp1
limit 10;

 

Error: Error while compiling statement: FAILED: ParseException line 23:39 cannot recognize input near ‘<EOF>‘ ‘<EOF>‘ ‘<EOF>‘ in select expression (state=42000,code=40000)

http://www.linuxidc.com/Linux/2013-10/91573.htm

Hive 中的分号问题

标签:

原文地址:http://www.cnblogs.com/skyEva/p/5800503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!