关于ACCESS数据库时间查询的问题
我想统计ACCESS里符合多项条件的数量,代码如下Text5.Text = FormatDateTime(Now, vbShortDate)
Set Conn = CreateObject("ADODB.Connection")
Connstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\新增信息.mdb"
Conn.Open Connstr
Set Rs = CreateObject("adodb.recordset")
SQL = "Select 编号 From SFILE where 时间 = #" & Text5.Text & "# and 类别='DY'"
Rs.Open SQL, Conn, 1, 2
k = Rst.recordCount
其中时间的查询已经试了好多,SQL就是不对
where 时间 = # 2015-3-30 # 这样是可以查询的,但用变量就怎么都代不进去
求助