标签:
如选取一段时间内的数据,time1和time2是时间起始字符串,则
sql server命令:
string strSQL=" 日期 >=‘"+time1+"‘ AND 日期 <= ‘"+time2+"‘";
access命令:
string strSQL=" 日期 >=#"+time1+"# AND 日期 <= #"+time2+"#";
主要区别在于sql server的日期字段值用单引号,而access用##。
如sql server是:
select * from table where 日期>‘2010/7/7‘;
access是:
select * from table where 日期>#2010/7/7#;
标签:
原文地址:http://www.cnblogs.com/mat-wu/p/5652260.html