当前位置: 代码迷 >> ASP >> asp 怎么打印 本星期的 Count(ID)
  详细解决方案

asp 怎么打印 本星期的 Count(ID)

热度:116   发布时间:2012-03-16 16:34:56.0
asp 如何打印 本星期的 Count(ID)
小弟想知道   如何打印本星期的注册ID的时间条件如何表达?
还有上个星期的时间条件,该如何表达?

谢谢了

------解决方案--------------------
today = Date()
wk = DatePart( "w ", today,1)
d1 = DateAdd( "d ", today, 1-wk)
d2 = DateAdd( "d ", d1, 6)
ld1 = DateAdd( "d ", d1, -7)
ld2 = DateAdd( "d ", ld1, 6)

Response.Write "本周: " & d1 & "到 " & d2
Response.Write "上周: " & ld1 & "到 " & ld2
sql = "select count(*) from tbl where xxx> = ' " & d1 & " ' and xxx <= ' " & d2 & " ' "
sql = "select count(*) from tbl where xxx> = ' " & ld1 & " ' and xxx <= ' " & ld2 & " ' "
  相关解决方案