SQLServer 统计查询语句消耗时间
--方法1【set statistic 】: set statistics time on go --执行语句 xxxx go set statistics time off --方法2【getDate()】: DECLARE @begin dateTime DECLARE @end dateTime SET @begin=getdate(); BEGIN --执行语句 xxxx end set @end=getdate(); SELECT datediff(ms,@begin,@end) as 'Elapsed Time'
方法3 数据库设置
当你的才华还撑不起你的野心时,那你就应该静下心来学习;当你的能力还驾驭不了你的目标时,那就应该沉下心来历练!