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

hive查询分区元数据,PARTITIONED BY

时间:2020-11-01 21:29:48      阅读:24      评论:0      收藏:0      [点我收藏+]

标签:from   目录   sele   where   sel   ike   location   style   name   

-- 查询具体表的分区目录 
select t1.NAME, t2.TBL_NAME,t4.PART_NAME, t3.LOCATION from DBS t1, TBLS t2 , SDS t3 ,PARTITIONSt4 
where t1.DB_ID=t2.DB_ID and t4.SD_ID = t3.SD_ID AND t2.TBL_ID = t4.TBL_ID and t1.NAME` = 数据库名 AND
t2.TBL_NAME like 表名

UNION

-- 查询具体表的目录
select t1.NAME, t2.TBL_NAME,null, t3.LOCATION from DBS t1, TBLS t2 , SDS t3
where t1.DB_ID=t2.DB_ID and
t2.SD_ID = t3.SD_ID AND
t1.NAME = 数据库名 AND
t2.TBL_NAME like ‘表名 ;`

 

hive查询分区元数据,PARTITIONED BY

标签:from   目录   sele   where   sel   ike   location   style   name   

原文地址:https://www.cnblogs.com/yangms/p/13908553.html

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