标题: 求助关于时间范围查询的问题 [打印本页] 作者: け星☆辰ご 时间: 2010-1-17 04:59 标题: 求助关于时间范围查询的问题 StrSQL="SELECT * FROM agentcw where agentid='"&request.cookies("agid")&"' and 时间必须在某个范围内 Order By zrdate DESC"
是这样写的吧?作者: 地上跑 时间: 2010-1-17 04:59
如果是ACCESS数据库:
StrSQL="SELECT * FROM agentcw where zdate>='"#2006-12-01#" and zdate<='"#2006-12-15#"'"
如果是sqlserver数据库:
StrSQL="SELECT * FROM agentcw where zdate>='"&2006-12-01&" and zdate<='"&2006-12-15&"'"