在mysql中得到当前日期是当月第几周

在mysql中得到当前日期是当月第几周,第1张

代码如下

    select group_date groupDate from (

    SELECT

    @cdate input_date,

    @last_sat := date_add(date_sub(date_sub(@cdate,interval  day(@cdate)-1 day),interval 1 month), interval 6-date_format(date_sub(date_sub(@cdate,interval  day(@cdate)-1 day),interval 1 month),'%w') day) last_sat,

    @this_sat := date_add(date_sub(@cdate,interval  day(@cdate)-1 day), interval 6-date_format(date_sub(@cdate,interval  day(@cdate)-1 day),'%w') day) this_sat,

    @next_sat := date_add(date_add(date_sub(@cdate,interval  day(@cdate)-1 day),interval 1 month), interval 6-date_format(date_add(date_sub(@cdate,interval  day(@cdate)-1 day),interval 1 month),'%w') day) next_sat,

    @last_point := if(day(@last_sat)-3>0,date_sub(@last_sat,interval 7 day),@last_sat) last_point,

    @this_point := if(day(@this_sat)-3>0,date_sub(@this_sat,interval 7 day),@this_sat) this_point,

    @next_point := if(day(@next_sat)-3>0,date_sub(@next_sat,interval 7 day),@next_sat) next_point ,

    case

    when @cdate >= @last_point and @cdate < @this_point then

    concat(

    'W',

    datediff(@cdate,@last_point) div 7 + 1, '/',

    year(@cdate),'-',

    if(month(@last_sat)>=10,month(@last_sat),concat('0',month(@last_sat)))

    )

    when @cdate >=@this_point and @cdate < @next_point then

    concat(

    'W',

    datediff(@cdate,@this_point) div 7 + 1,'/',

    year(@cdate),'-',

    if(month(@this_sat)>=10,month(@this_sat),concat('0',month(@this_sat))))

    else

    concat(

    'W',

    datediff(@cdate,@next_point) div 7 + 1,'/',

    year(@cdate),'-',if(month(@next_sat)>=10,month(@next_sat),concat('0',month(@next_sat))))

    end

    group_date

    from  (SELECT @cdate := #{inputDate}) as gd

    );

select

*

from

shipmentlist,shipmentscrib

where

(shipmentlist.shipmentlistno=shipmentscrib.shipmentlistno)

and (year(shipmentlist.shipmentdate)=year(now()))

and (month(shipmentlist.shipmentdate)=month(now())

or month(shipmentlist.shipmentdate)=month(now())-1 )

ORDER BY shipmentdate DESC

格式化了一下你的SQL,分析一下。

假如今天是 2012年1月1日。

那么上面的条件。

将变为

year = 2012 and month = 1 OR month = 0

其实,对于 查询 当月和上一月

相当于

shipmentlist.shipmentdate >= 上月的1号

AND shipmentlist.shipmentdate <下月的1号

LAST_DAY(NOW()) 可以获取 本月的最后一天.

DATE_ADD( LAST_DAY(NOW()) INTERVAL 1 DAY ) 可以获取下月第一天。

DATE_SUB ( DATE_ADD( LAST_DAY(NOW()) INTERVAL 1 DAY ) INTERVAL 2 MONTH ) 可以获取上月的1号

(也就是用 下月的1号 减少2个月,从而获取 上月的1号)

最后 SQL 修改为:

select

*

from

shipmentlist,shipmentscrib

where

(shipmentlist.shipmentlistno=shipmentscrib.shipmentlistno)

and shipmentlist.shipmentdate >= DATE_SUB ( DATE_ADD( LAST_DAY(NOW()) INTERVAL 1 DAY ) INTERVAL 2 MONTH )

AND shipmentlist.shipmentdate <DATE_ADD( LAST_DAY(NOW()) INTERVAL 1 DAY )

ORDER BY shipmentdate DESC

----表名tb,日期字段dt,金额字段,amt

select sum(last_mon_amt) last_mon_amt,sum(cur_mon_amt) cur_mon_amt,sum(last_day_amt ) last_day_amt from(

select sum(amt) last_mon_amt,0 cur_mon_amt,0 last_day_amt from tb where date_format(dt, '%Y%m') = date_format(date_add(sysdate(), interval -1 month), '%Y%m') --上月合计

union all

select 0 last_mon_amt,sum(amt) cur_mon_amt,0 last_day_amt from tb where date_format(dt, '%Y%m') = date_format(sysdate(),'%Y%m') --当月合计

union all

select 0 last_mon_amt,0 cur_mon_amt,sum(amt) last_day_amt from tb where date_format(dt, '%Y%m%d') = date_format(date_add(sysdate(), interval -1 day),'%Y%m%d') --昨日合计

) tb1


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

原文地址: http://outofmemory.cn/zaji/8663881.html

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

发表评论

登录后才能评论

评论列表(0条)

保存