access数据库的查询
表中有这几个字段 地址 日期 时间 描述 ,要将表中符合前三个条件的描述查询出来,即将某个地址介于某个日期的某个时间与某个日期的某个时间之间的描述查询出来,我使用了这样的语句但不正确
Data2.RecordSource = "select * from 检测电压电流 where 地址='" & DBCombo1.Text & "' and 日期 between" + Chr(35) + Str(DTPicker1.Value) + Chr(35) + "and" + Chr(35) + Str(DTPicker2.Value) + Chr(35) + " and 时间 between" + Chr(35) + Str(DTPicker3.Value) + Chr(35) + "and " + Chr(35) + Str(DTPicker4.Value) + Chr(35) + "order by 日期,时间"
Data2.Refresh
请各位大侠指点,在线等候。