SQL是什么& in where子句是什么意思?

时间:2015-02-22 05:17:49

标签: sql vb.net date ms-access

这段代码是否正确:

"SELECT * FROM dataTable WHERE Datee Between '#" & textStartDate.Text & "# AND #" & textEndDate.Text & "#'"      

那是什么&意思是#有人可以告诉我 我正在使用vb和acess

1 个答案:

答案 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 & "#'"