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

hive 中 union all

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

标签:c   使用   type   name   sql   user   

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

标签:c   使用   type   name   sql   user   

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

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