根据当前时间,查询本周的每一天的最后一条数据.

根据当前时间,查询本周的每一天的最后一条数据.,第1张

mysql语法:

select tnew_customer new, told_customer old, max(tcreate_time) create_time

from t

where date(tcreate_time) between

date_sub(curdate(), interval weekday(curdate()) + 1 day) and

date_sub(curdate(), interval weekday(curdate()) - 5 day)

group by tnew_customer, told_customer, date(tcreate_time);

oracle语法:

select tnew_customer new, told_customer old, max(tcreate_time) create_time

from t

where trunc(create_time) between trunc(sysdate, 'd') and

trunc(sysdate, 'd') + 6

group by tnew_customer, told_customer, trunc(tcreate_time);

不知道你的数据库是什么,就写了两种

select sysdate 当时日期,

next_day(sysdate,'星期一') 下周星期一,

next_day(sysdate,'星期二') 下周星期二,

next_day(sysdate,'星期三') 下周星期三,

next_day(sysdate,'星期四') 下周星期四,

next_day(sysdate,'星期五') 下周星期五,

next_day(sysdate,'星期六') 下周星期六,

next_day(sysdate,'星期日') 下周星期日 from dual;

select sysdate 当时日期,

trunc(sysdate) 今天日期,

trunc(sysdate,'day') 本周星期日,

trunc(sysdate,'month') 本月初,

trunc(sysdate,'q') 本季初日期,

trunc(sysdate,'year') 本年初日期 from dual;

看看有你要的结果没。

select SUNDAY,SATURDAY from

(select

sundaythe_week,decode(sign(sundaythe_day-saturdaythe_day),-1,sundaythe_day,sundaythe_day-7)

sunday,saturdaythe_day saturday from

(select to_char(wwm,'WW') the_week,to_char(wwm,'D') the_daynum,wwm the_day from (select

trunc(sysdate, 'MM')+rownum-1 as wwm from user_objects where rownum < 366) where

to_char(wwm,'D')=1 ) sunday,

(select to_char(wwm,'WW') the_week,to_char(wwm,'D') the_daynum,wwm the_day from (select

trunc(sysdate, 'MM')+rownum-1 as wwm from user_objects where rownum < 366) where

to_char(wwm,'D')=7 ) saturday

where sundaythe_week=saturdaythe_week) a

where the_week=32

select max(years) || '年第' || week || '周',count(1)

from (select to_char(Y_TIME, 'yyyy') years,

to_char(Y_TIME+to_char(trunc(Y_TIME,'yyyy'),'d')-2,'WW') week

from T_B) group by week order by max(years),week

其中Y_TIME为你数据的时间字段,T_B为你要查询的表,查出每周数据量

查询结果示例如下:

2012年第31周 340

2012年第42周 6

2012年第43周 35

2012年第46周 7655

2013年第03周 18

2013年第04周 4

2013年第05周 2

2013年第06周 8

那要看表里面有没有who字段啦

我自己建的表都有last_update_date,last_update_by,creation_date,create_by,last_update_log_on

根据creation_date来限制创建时间

以上就是关于根据当前时间,查询本周的每一天的最后一条数据.全部的内容,包括:根据当前时间,查询本周的每一天的最后一条数据.、oracle 月内周计算、oracle中 我给出一个周数 用什么函数可以取出这周的开始日期和结束日期等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9660445.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存