首页 > 其他 > 详细

hive 中 union all

时间:2014-05-08 07:17:13      阅读:346      评论:0      收藏:0      [点我收藏+]

hive 中的union all是不能在sql语句的第一层使用的,否则会报 Top level UNION is not supported currently 错误;

例如如下的方式:

select id,name from user where type = 1

union all

select id,name from user where type = 2

 

上面的方式应该使用子查询的方式书写:

select * from

(

select id,name from user where type = 1

union all

select id,name from user where type = 2

) tmp

 

 

hive 中 union all,布布扣,bubuko.com

hive 中 union all

原文:http://www.cnblogs.com/yuhan-TB/p/3715039.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!