SQL如何统计本月的数据 ( 积分: 100 )

  • 主题发起人 主题发起人 why_119
  • 开始时间 开始时间
W

why_119

Unregistered / Unconfirmed
GUEST, unregistred user!
SQL如何统计本月的数据
或查询本月的数据
 
总有一个字段存日期的吧?假设是DateField
查询条件:
where DateField between Convert(varchar(8), getdate(), 120)+'01' and Convert(varchar(8), getdate(), 120)+Convert(Day(dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,getdate())+1, 0))) as varchar)
 
SQL SERVER
where year(日期) = year(getdate()) and month(日期) = month(getdate())
ACCESS
where year(日期) = year(now) and month(日期) = month(now)
 
晕,俺们咋没想到呢...
 
后退
顶部