• hive常用操作


    1. 文件导入到hdfs

    从本地/tmp/path下拷贝文件上传到hive表test中的CHINA分区中。

    LOAD DATA LOCAL INPATH '/tmp/path/' OVERWRITE  INTO TABLE test PARTITION (country='CHINA')

    2. hive -f 带参数

    ⭐️注意⭐️:使用hive -e 查询时,查询结果是写入不了hive表中的,必须使用hive -f !!!!!!!

    带参数的脚本,script.q为sql语句,每个变量都需要通过--hivevar添加

    hive -f script.q --hiveconf params_dt=20180418 --hiveconf tmp_table=tmp_table

    script.q脚本中使用变量如下:

    insert into table dw_dm.target_table partition(dim,period)
    select  field1,field2,dim,period 
    from ${hiveconf:tmp_table}
    where dt = '${hiveconf:params_dt}';

     3. hive中查看function

    show functions;   //查看所有函数
    
    desc function extended data_format;   //查看函数具体定义

    4. 日期转换

    方法1: from_unixtime+ unix_timestamp
    --20171205转成2017-12-05 
    select from_unixtime(unix_timestamp('20171205','yyyymmdd'),'yyyy-mm-dd') from dual;
    
    --2017-12-05转成20171205
    select from_unixtime(unix_timestamp('2017-12-05','yyyy-mm-dd'),'yyyymmdd') from dual;
    
    方法2: substr + concat
    --20171205转成2017-12-05 
    select concat(substr('20171205',1,4),'-',substr('20171205',5,2),'-',substr('20171205',7,2)) from dual;
    
    --2017-12-05转成20171205
    select concat(substr('2017-12-05',1,4),substr('2017-12-05',6,2),substr('2017-12-05',9,2)) from dual;
  • 相关阅读:
    IE, FireFox, Opera 浏览器支持CSS实现Alpha半透明的方法
    5个CSS3技术实现设计增强
    SQL Server 2005 中的分区表和索引
    推荐12款可用于前端开发的免费文本编辑器
    960 Grid System
    初识Byte
    在线制作网站
    sqlserver操作符篇 优化
    ASP.NET 异常处理
    Photoshop 隐藏的快捷键
  • 原文地址:https://www.cnblogs.com/30go/p/8694185.html
Copyright © 2020-2023  润新知