asp access数据库 读取特定条件的记录数
aspaccess数据库读取特定条件的记录数count表中有ip1,ip2,address,time字段time字段内是now()写入的,内容格式为2010-7-20AM...
asp access数据库 读取特定条件的记录数
count表中有ip1,ip2,address,time字段
time字段内是now()写入的,内容格式为2010-7-20 AM 09:44:41
请问,怎么写才能分别读取出今天,昨天,一周内访问的记录数
dim sqlTotal
dim rsTotal
sqlTotal="select Count(*) from Count "
Set rsTotal= Server.CreateObject("ADODB.Recordset")
rsTotal.open sqlTotal,conn,1,1
if rsTotal.eof and rsTotal.bof then
totalPut=0
response.write "共有 0 条记录"
else
totalPut=rsTotal(0)
response.Write "共有 " & totalPut & "条记录"
end if
rsTotal.close
set rsTotal=nothing 展开
count表中有ip1,ip2,address,time字段
time字段内是now()写入的,内容格式为2010-7-20 AM 09:44:41
请问,怎么写才能分别读取出今天,昨天,一周内访问的记录数
dim sqlTotal
dim rsTotal
sqlTotal="select Count(*) from Count "
Set rsTotal= Server.CreateObject("ADODB.Recordset")
rsTotal.open sqlTotal,conn,1,1
if rsTotal.eof and rsTotal.bof then
totalPut=0
response.write "共有 0 条记录"
else
totalPut=rsTotal(0)
response.Write "共有 " & totalPut & "条记录"
end if
rsTotal.close
set rsTotal=nothing 展开
3个回答
展开全部
你需要定义个时间变量,如果点击今天 进入
if datediff ("d",时间字段,now())=0
表示是今天显示记录 可以自己写 次数
假设发布日期为date1
'DATEPART(ww,date1)=DATEPART(ww,'2008-10-3'),意思是date1的周等于当天的周,一般可以用"date"函数得到,举例:nowdate=date,'2008-10-3'用'"&nowdate&"'得到当天
'DATEPART(yyyy,date1)=DATEPART(yyyy,'2008-10-3') ,意思是date1的年等于当天的年。
'注意:老外星期天是一周的第一天,标准都是老外定的,如果非要把星期天定位最后一天,不是不能写,判断就复杂了,只能锁定这个星期的天数解决,举例:取当前周的星期一为第1天,然后天数加6,然后:date1 between '2008-10-6' and '2008-10-12',
if datediff ("d",时间字段,now())=0
表示是今天显示记录 可以自己写 次数
假设发布日期为date1
'DATEPART(ww,date1)=DATEPART(ww,'2008-10-3'),意思是date1的周等于当天的周,一般可以用"date"函数得到,举例:nowdate=date,'2008-10-3'用'"&nowdate&"'得到当天
'DATEPART(yyyy,date1)=DATEPART(yyyy,'2008-10-3') ,意思是date1的年等于当天的年。
'注意:老外星期天是一周的第一天,标准都是老外定的,如果非要把星期天定位最后一天,不是不能写,判断就复杂了,只能锁定这个星期的天数解决,举例:取当前周的星期一为第1天,然后天数加6,然后:date1 between '2008-10-6' and '2008-10-12',
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
仅供参考
今天的
select Count(*) from Count where DateDiff('d',time,now())=0
昨天的
select Count(*) from Count where DateDiff('d',time,now())=1
一周是指本周吗?
<%
today=Weekday(date,2) '获得今天星期几,星期一为 1, 星期天为 7
thismonday=dateadd("d",date,(-(today-1)))
%>
select Count(*) from Count where time between #"&thismonday&"# and #"&date&"#"
今天的
select Count(*) from Count where DateDiff('d',time,now())=0
昨天的
select Count(*) from Count where DateDiff('d',time,now())=1
一周是指本周吗?
<%
today=Weekday(date,2) '获得今天星期几,星期一为 1, 星期天为 7
thismonday=dateadd("d",date,(-(today-1)))
%>
select Count(*) from Count where time between #"&thismonday&"# and #"&date&"#"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一周内的
sqlTotal="select Count(*) from Count where DATEDIFF('d',time,Now())<=7"
昨天
sqlTotal="select Count(*) from Count where DATEDIFF('d',time,Now())=1"
今天
sqlTotal="select Count(*) from Count where DATEDIFF('d',time,Now())=0"
sqlTotal="select Count(*) from Count where DATEDIFF('d',time,Now())<=7"
昨天
sqlTotal="select Count(*) from Count where DATEDIFF('d',time,Now())=1"
今天
sqlTotal="select Count(*) from Count where DATEDIFF('d',time,Now())=0"
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询