我想做一個數據庫的統計,想匯總ACC中當日,本周,本月,本季,本年的符合某個條件的數據
請問用ASP要怎么實現,請各位幫幫忙!
兄弟,我按你的方法做了,但還是沒有顯示
我用這種方法就OK了
function dnz2()
sql="Select count(*) from party where star_time between #2006/01/01# and #2006/01/31#"
set ips=conn.execute(sql)
dnz2=ips(0)
ips.close
set ips=nothing
end function
現在的問題是怎么取得,#2006/01/01#與#2006/01/31# ,如果我要統計本天的,我應該怎么寫
數據庫中 star_time 的格式為2006/01/21 17:13:00,也就是說我要怎么樣取得 star_time中的日期= 今天的日期。
[此贴子已经被作者于2006-1-21 17:18:53编辑过]
然后我直接這樣
function dnz2()
startDate=year(now)&"-"&month(now)&"-"&"1"
endDate=DateAdd("m", 1, startDate)-1
sql="Select count(*) from party where star_time between #"&startDate&"# and #"&endDate&"#"
set ips=conn.execute(sql)
dnz2=ips(0)
ips.close
set ips=nothing
end function
調用dnz2就OK了。
[此贴子已经被作者于2006-1-23 8:54:13编辑过]