用sql查询当天,一周,一个月的数据 数据查询,不管在网站还是在系统,都很常见,下文是介绍最常见的以日期查询的语句 select * from ShopOrder where datediff(week,ordTime,getdate()-1)=0 //查询当天日期在一周年的数据 select * from ShopOrder where datediff(day,ordTime,getdate()-1)=0 //查询当天的所有数据 --查询当天: select * fro…
--查询当天: select * from info where DateDiff(dd,datetime,getdate())=0 --查询24小时内的: select * from info where DateDiff(hh,datetime,getDate())<=24 --查询本周记录select * from info where datediff(week,datetime,getdate())=0 --查询本月记录select * from info where datedif…
1.获取当前时间一周前的日期 ' day from dual 类似的 --当前时间减去7分钟的时间 ' MINUTE from dual --当前时间减去7小时的时间 ' hour from dual --当前时间减去7天的时间 ' day from dual --当前时间减去7月的时间 ' month from dual --当前时间减去7年的时间 ' year from dual --时间间隔乘以一个数字 ' hour from dual 2.获取当前时间一个月前的日期 ) from dua…