SQL语句查询所耗时间与效能的语句

1)SQL查询所耗时间语句

  原理:记录当前时间1,执行SQL语句,记录当前时间2,显示时间2与时间1的差。

  由于第一次执行的所耗时间为真实时间,之后会保存在缓存中,所以第二次之后的查询所耗时间都会比第一次明显减少,所以此方法只能作为参考。

  如果有更好的方式,感谢博友提供给我,相互学习。

  

declare @begin_date datetime
declare @end_date datetime
select @begin_date = getdate() --SQL语句 select @end_date = getdate()
select datediff(ms,@begin_date,@end_date) as '毫秒'

2)SQL查询语句效能语句

  一个查询需要的CPU、IO资源越多,查询运行的速度就越慢,该语句可以显示CPU、IO所耗资源的详细信息,帮助提高语句效能。

set statistics profile on
set statistics io on
set statistics time on --SQL语句 set statistics profile off
set statistics io off
set statistics time off
上一篇:Elastic-Job-分布式调度解决方案


下一篇:Luogu3527 POI2011 Meteors 整体二分、树状数组、差分