码迷,mamicode.com
首页 > 数据库 > 详细

SQL SERVER 查看sql语句性能与执行时间

时间:2019-01-11 18:03:46      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:serve   --   color   art   sql语句   col   bsp   time   diff   

【方法一】

set statistics profile on
set statistics io on
set statistics time on
go
--sql语句
go
set statistics profile off
set statistics io off
set statistics time off

 

【方法二】

declare @starttime datetime

set @starttime=getdate()

begin

--sql语句

end

select datediff(ms,@starttime,getdate())

 

SQL SERVER 查看sql语句性能与执行时间

标签:serve   --   color   art   sql语句   col   bsp   time   diff   

原文地址:https://www.cnblogs.com/itsone/p/10256392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!