当前位置:   article > 正文

HIVE-新增字段/修改字段/时间函数等常用函数_hive修改字段长度

hive修改字段长度

1、增加字段脚本

  1. 添加单个字段
  2. Alter table  tableName add column columnName decimal(12,3) ;
  3. //添加多个字段
  4. Alter table tableName  add column (
  5. A string COMMENT 'A',
  6. B decimal(16, 6) COMMENT 'B',
  7. C decimal(16, 6) COMMENT 'C',
  8. D decimal(16, 6) COMMENT 'D',
  9. F decimal(16, 6) COMMENT 'F ');

2、修改字段类型

  1. //字段A类型修改成长度16位,6小数数值类型
  2. Alter table tableName change column A A decimal(16,6) ;

3、时间函数

unix_timestamp() : 返回单位:秒

4、输入格式函数

select from_unixtime(1534839814);

5、其他日期函数

  1. select from_unixtime(unix_timestamp(),'yyyy-MM-dd') today -- 今天
  2. select trunc(from_unixtime(unix_timestamp(),'yyyy-MM-dd') ,'MM') firstday -- 当月第一天
  3. select last_day(from_unixtime(unix_timestamp(),'yyyy-MM-dd')) lastday -- 当月最后一天
  4. select add_months(trunc(from_unixtime(unix_timestamp(),'yyyy-MM-dd') ,'MM') ,1) next_month_firstday --下个月第一天

6、任务中时间
 

  1. # 任务中使用 变量
  2. substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).plusMonths(-1).dayOfMonth().withMinimumValue().getMillis()),1,10)
  3. # 当前月第一天000
  4. substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).dayOfMonth().withMinimumValue().getMillis()),1,10)
  5. # schedule.exec.time
  6. 定义:计划执行时间的unix时间戳
  7. 数据格式demo: 1534839814392 (单位:毫秒)
  8. # 备注:下述 substr 获取到的是 秒,索引位从1开始
  9. # 最后 endTime 等是 1970到现在的秒
  10. # 当前月第一天000
  11. curMonFirstDay substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).dayOfMonth().withMinimumValue().getMillis()),1,10)
  12. # 当前月最后一天000
  13. curMonLastDay substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).dayOfMonth().withMaximumValue().getMillis()),1,10)
  14. # 上个月第一天000
  15. preMonFirstDay substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).plusMonths(-1).dayOfMonth().withMinimumValue().getMillis()),1,10)
  16. # 上个月最后一天000
  17. preMonLastDay substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).plusMonths(-1).dayOfMonth().withMaximumValue().getMillis()),1,10)
  18. # 下个月第一天000
  19. nextMonFirstDay substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).plusMonths(1).dayOfMonth().withMinimumValue().getMillis()),1,10)
  20. # 下个月最后一天000
  21. nextMonLastDay substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).withMillisOfDay(0).plusMonths(1).dayOfMonth().withMaximumValue().getMillis()),1,10)
  22. # 当前时间:距离1970的秒数
  23. endTime substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).getMillis()),1,10)
  24. # 当前时间:距离1970的秒数:往前推2分钟
  25. endTime_before2min substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).minusMinutes(2).getMillis()),1,10)
  26. # 当前时间:距离1970的秒数:往前推10分钟
  27. endTime_before10min substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).minusMinutes(10).getMillis()),1,10)
  28. # 当前时间:距离1970的秒数:往前推1小时
  29. endTime_before1hour substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).minusHours(1).getMillis()),1,10)
  30. # 当前时间:距离1970的秒数:往前推5
  31. endTime_before5day substr($(new("org.joda.time.DateTime", ${schedule.exec.time}).minusDays(120).getMillis()),1,10)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/562608
推荐阅读
相关标签
  

闽ICP备14008679号