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

hive 经常使用命令

时间:2016-04-03 15:55:00      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

1、查看表结构信息

  desc formatted table_name;
  desc table_name;
查看关联文件:

 desc extended f_tblog_online_mds;

2、查看分区

show partitions table_name;

3、依据分区查询。提快速度

select table_coulm from table_name where partition_name = ‘2014-02-25‘;

4、删除分区

   alter table table_name drop partition(dt=‘2014-03-01‘);

5、删除表

drop tablename;

hive 经常使用命令

标签:

原文地址:http://www.cnblogs.com/lcchuguo/p/5349909.html

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