这段代码是否正确:
"SELECT * FROM dataTable WHERE Datee Between '#" & textStartDate.Text & "# AND #" & textEndDate.Text & "#'"
那是什么&意思是#有人可以告诉我 我正在使用vb和acess
答案 0 :(得分:0)
&符“&”用于连接。
在
"SELECT * FROM dataTable WHERE Datee Between '#" & textStartDate.Text & "# AND #" & textEndDate.Text & "#'"
在
"SELECT * FROM dataTable WHERE Datee Between '#" & textStartDate.Text & "#' AND '#" & textEndDate.Text & "#'"
之间的陈述缺少“'”引号以包含日期值。
修改强>
如何将通配符添加到非日期sql查询。此代码在变量的两侧都有通配符。
...WHERE SomeField like '*" & textWeAreSearchingFor & "*'"
以下是有关如何查询日期日期类型的其他示例。
...WHERE Datee >= '#" & textStartDate.Text & "#'"
OR
...WHERE Datee < '#" & textStartDate.Text & "#'"