sql中时间以5分钟半个小时任意间隔分组的实现方法

开发中遇到过问题就是对时间以半个小时分钟分组,如统计08:00-08:30的人数,08:30-09:00的人数,貌似sql中没有这样的函数吧,直接从数据库里查出来,在java里分组也太low了吧

想到方法1 自定义函数,自己实现时间的半个小时转换,统计时调用函数

create function `date_half_hour_format`(in_date timestamp) returns timestamp
begin
 declare out_date timestamp;
 declare s_date varchar(255);
 declare s_minute varchar(2);
 declare int_minute int;
 
 set s_minute = substring(in_date, 15, 2);
 set int_minute = cast(s_minute as signed);
 
 if int_minute <= 29 then
  set int_minute = 0;
  set s_date = concat(left(in_date, 14),'0',int_minute);
 else
  set int_minute = 30;
  set s_date = concat(left(in_date, 14),int_minute);
 end if;
  
 set out_date = str_to_date(s_date,'%y-%m-%d %h:%i');
 
 return out_date;
  end

方法2 学过c语言更清楚c语言创建时间都是一个long的时间戳,可以对时间做除法运算,就是时间long的值除以30*60,这样就能得出半个小时的时间了,mysql中有函数unix_timestamp获取long的时间,从long转date的form_unixtime

select from_unixtime((unix_timestamp(current_timestamp) div 1800)*1800)

这样就可以按任意时间分组了

ps:sql server 时间查询

select dateadd(dd,-day(getdate()) + 1,getdate()) '当月起始时间'  //查询当月起始时间

select dateadd(ms,-3,dateadd(mm, datediff(m,0,getdate())+1, 0)) '当月结束时间'  //查询当月结束时间

select dateadd(dd,-day(dateadd(month,-1,getdate()))+1,dateadd(month,-1,getdate())) '上月起始时间'  //查询上月起始时间

select dateadd(dd,-day(getdate()),getdate()) '上月结束时间'  //查询上月结束时间

select dateadd(quarter,datediff(quarter,0,getdate())-1,0) as '当前季度的上个季度初'  //查询当前季度的上个季度开始时间

select dateadd(quarter,datediff(quarter,0,getdate()),-1) as '当前季度的上个季度末'  //查询当前季度的上个季度结束时间

select dateadd(quarter,datediff(quarter,0,getdate()),0) as '当前季度的第一天'  //查询当前季度起始时间

select dateadd(quarter,1+datediff(quarter,0,getdate()),-1) as '当前季度的最后一天'  //查询当前季度结束时间

select dateadd(quarter,1+datediff(quarter,0,getdate()),0) as '当前季度的下个季度初'  //查询当前季度下个季度开始时间

select dateadd(quarter,2+datediff(quarter,0,getdate()),-1) as '当前季度的下个季度末'  //查询当前季度下个季度结束时间

select dateadd(year,datediff(year,0,dateadd(year,-1,getdate())),0) '去年的第一天'  //去年的第一天

select dateadd(year,datediff(year,0,getdate()),-1) '去年最后一天'  //去年的最后一天

select dateadd(year, datediff(year, 0, getdate()), 0) '当年的第一天'  //当年的第一天

select dateadd(year,datediff(year,0,dateadd(year,1,getdate())),-1) '当年的最后一天'  //当年的最后一天

总结

以上所述是www.887551.com给大家介绍的sql中时间以5分钟半个小时任意间隔分组的实现方法,希望对大家有所帮助

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐