[已解决]条件查询Access数据库时间段的sql语句
目的:查询一个时间段内的记录Access里的addtime字段是时间格式,只有天没有小时分秒。如:2010-08-16
我这样写:
程序代码:
date1=request.Form("date1") date2=request.Form("date2") sql="select title from News where addtime between #"&date1&"# and #"&date2&"# "什么都查询不出来
但是我这样写:
sql="select title from News where addtime between #2010-08-12# and #2010-08-16# "就可以
应该怎么写呀?
[ 本帖最后由 towering 于 2010-8-16 17:20 编辑 ]