首页 > 数据库技术 > 详细

优化sql用到的方法

时间:2017-01-19 18:09:06      阅读:224      评论:0      收藏:0      [点我收藏+]

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用到的方法

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!