在access中进行时间的比较sql语句很简单,如select * from table where thetime>#”& now() &”#这样即可
在mssql就不能这样,要用datediff语句和getdate()函数进行比较。
如select count(*) from table where datediff(s,getdate(),thetime)>0,我自己特别做了个50万条数据的的表,执行这条语句差不多需要1200毫秒。
后来研究了一下,发现其实不需要用datediff函数,可以直接使用>来比较,语句如下:select count(*) from table where thetime>getdate(),这样差不多只要750毫秒,快了将近500毫秒。
新闻热点
疑难解答