标题: 有关的时间SQL语句 [打印本页] 作者: 张娜 时间: 2012-5-7 21:40 标题: 有关的时间SQL语句 任意的时间日期,求上周一到上周日一周的数据的sql语句。:handshake作者: 苏腾 时间: 2012-5-8 08:24
http://softlifeware.blog.sohu.com/85198130.html
参考一下作者: yuchen0418 时间: 2012-5-8 08:44
在能得到上周一日期(date1)的情况下,可以用:
select * from table_name where date>=date1 and date<=dateadd(d,6,date1)作者: 白建新 时间: 2012-5-8 10:28
上一星期(上周一至周日):
select * from art where [now] between dateadd("d",-Weekday(Now())-5,now()) and dateadd("d",-Weekday(Now())+1,now()) 作者: 陈宗福 时间: 2012-5-10 12:54
select * from art where dateandtime between ((now()+(Weekday(now)-7))-6) and (now()-7)+Weekday(now())