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

优化sql用到的方法

时间:2017-01-19 18:10:40      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:stat   nbsp   profile   end   time   方法   get   sql   ted   

set statistics profile on
set statistics io on
set statistics time on

declare @begin_date datetime
declare @end_date datetime
select @begin_date = getdate()

 

select @end_date = getdate()
select datediff(ms,@begin_date,@end_date) as ‘用时/毫秒‘

set statistics profile off
set statistics io off
set statistics time off

优化sql用到的方法

标签:stat   nbsp   profile   end   time   方法   get   sql   ted   

原文地址:http://www.cnblogs.com/xiaoyu369/p/6307340.html

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