美文网首页
Hql 时间转换函数

Hql 时间转换函数

作者: 八爪鱼下水 | 来源:发表于2021-05-06 16:10 被阅读0次

函数总结:
select unix_timestamp('2019-07-01 23:59:00','yyyy-MM-dd HH:mm:ss');

转化时间戳
select from_unixtime(1561996740);

转回时间
substr(string A, int start, int len),substring(string A, int start, int len)

时间转换函数
substr(wce.create_time,12,2) as hourinfo, 转化小时
substr(wce.create_time,1,4) as yearinfo, 转换年
quarter(wce.create_time) as quarterinfo, 转化季度
substr(wce.create_time,6,2) as monthinfo, 转化月
substr(wce.create_time,9,2) as dayinfo 转化天

--输出 2020-01-10
--hive
select to_date(from_unixtime(UNIX_TIMESTAMP('20200110','yyyyMMdd')));

--presto
select (format_datetime(date_parse('20200110','%Y%m%d'),'yyyy-MM-dd') ;

  • 问题2: 时间的加减

例子: 原时间为20200110 需先转化为标准日期形式再加减

--hive 
select date_add('2020-01-12',10);
select date_add(to_date(from_unixtime(UNIX_TIMESTAMP('20200110','yyyyMMdd'))),10);

--presto
select date_add('day',-6,cast('2020-07-07' as date)); 
--第三个参数不转换为date格式, 会报错 第三个参数必须为date格式
select 
date_add('day', -6, cast(format_datetime(date_parse('20200110','%Y%m%d'),'yyyy-MM-dd') as date));
  • 问题3: 时间戳转日期
--hive
select from_unixtime(1578585600);
--加格式
select from_unixtime(1578585600,'yyyyMMdd');

--presto
select from_unixtime(1578585600);
--加格式
select format_datetime(from_unixtime(1578585600),'yyyy-MM-dd');
  • 问题4: 日期转时间戳
--hive 
select unix_timestamp('20200110' ,'yyyyMMdd'); --10位时间戳

-- presto 
select to_unixtime(cast('2020-01-10' as date));
select to_unixtime(cast(format_datetime(date_parse('20200110','%Y%m%d'),'yyyy-MM-dd') as date));
  • 问题5: 计算两个日期之间的diff
--hive
select datediff('2017-09-15','2017-09-01');-- 结果14

--presto 
select date_diff('day',cast('2018-09-05' as date),cast('2018-09-07' as date));

-- 1)需要提供参数'day',表示要查询的是天数间隔;要查询小时,则提供参数'hour'
-- 2)并且后面传参限制为date类型;
-- 3)最后要注意是后面减去前面 --与hive不同
  • 问题6: 当前时间
--hive
select current_date;
select unix_timestamp(); --获取当前时间戳
select from_unixtime(unix_timestamp());

-- presto
select now();  --精确到今天的时分秒
select current_date; --精确到今天的年月日
select current_date - interval '1' day; 精确到昨天的年月日

--hive其它日期查询
select current_timestamp; --查询当前系统时间(包括毫秒数);  
select dayofmonth(current_date); -- 查询当月第几天
select last_day(current_date); --月末
select date_sub(current_date,dayofmonth(current_date)-1); --当月第1天: 
select add_months(date_sub(current_date,dayofmonth(current_date)-1),1); --下个月第1天
  • 1、concat(str1,str2,str3,…) --链接两个字符串
  • 2、concat_ws(‘分隔符’,str1,str2,…) --用符号链接两个字符串
  • 3、group_concat(str1,[order by str3],[separator ‘分隔符’]) --行转列
按id分组,把name连接为一行
select id,group_concat(name)
1|bobannahelen
2|tombabytom
按id分组,把name连接为一行,并按name升序
select id,group_concat(name order by name asc)
1|annabobhelen
2|babytomtom
按id分组,name去重并连接为一行,按name升序,用逗号分隔
select id,group_concat(distinct name order by name asc separator ‘,’)
1|anna,bob,helen
2|baby,tom

相关文章

  • Hql 时间转换函数

    函数总结:select unix_timestamp('2019-07-01 23:59:00','yyyy-M...

  • Hibernate(03)

    OID检索方式: HQL\QBC和SQL的区别? 条件查找 排序 分页查询: HQL: QBC 或者 聚合函数co...

  • hql日期函数

    背景: 工作中多次使用到hql的时间转换,但一直未记录相关文档,每次查找都十分麻烦,故文档记录方便下次使用。 查找...

  • Hibernate如何使用数据库或给它注入自定义函数

    Hibernate主要是通过方言来使HQL语句支持数据库函数,我们可以通过改写或覆盖、重新设置方言方式实现让HQL...

  • HQL之函数使用

    在HQL中,我们可以使用关系操作符、数学操作符、逻辑操作符、复合类型操作符以及复合类型构建器。其中,关系操作符、数...

  • Excel中text函数的用法以及六大text函数的使用案例

    内容提要:Excel中text函数的用法、text函数日期格式、text函数转换文本、text函数转换时间、补零等...

  • mysql语句

    1、字典转换 2、mysql 自带时间函数date_format和str_to_date转换mysql内置函数,在...

  • python 各种进制的转换

    转换二进制: bin()函数 转换十进制:int()函数 转换十六进制:hex()函数 转换8进制:oct()函数

  • HQL聚集计算之进阶篇

    HQL聚集函数可以使用GROUPING SETS, CUBE, 和ROLLUP等关键词。 GROUPING SET...

  • HQL数据查询基础

    了解HQL HQL定义 HQL:Hibernate Query Language, Hibernate查询语句 H...

网友评论

      本文标题:Hql 时间转换函数

      本文链接:https://www.haomeiwen.com/subject/exeddltx.html