twy1392336 2008-6-24 07:55
如何显示ACCESS的日期与时间类型数据
用一个DateTimePicker控件的值作为数据源SQL语名的过滤条件,提示 " 标准表达式的数据类型不匹配",是不是要用FORMAT函数?我把SQL语句写成:
Select * from 表 where 日期 <= '" & format(DTPicker2.Value) & "' and 日期 >= '" & format(DTPicker1.Value) & "'"
这样写还是报上述错。
Nothing 2008-6-24 09:06
Select * from 表 where 日期 <= #" & format(DTPicker2.Value) & "# and 日期 >= #" & format(DTPicker1.Value) & "#"
access的日期用#,不要用'