Sqlserver中时间查询的一个比较快的语句
文章作者 100test 发表时间 2008:01:28 09:26:23
来源 100Test.Com百考试题网
在access中进行时间的比较sql语句很简单,如0select * from table where thetime>#"&. now() &."#这样即可
在mssql就不能这样,要用datediff语句和getdate()函数进行比较。
如0select count(*) from table where datediff(s,getdate(),thetime)>0,我自己特别做了个50万条数据的的表,执行这条语句差不多需要1200毫秒。
后来研究了一下,发现其实不需要用datediff函数,可以直接使用>来比较,语句如下:0select count(*) from table where thetime>getdate(),这样差不多只要750毫秒,快了将近500毫秒。