计算sql语句的执行时间


declare @starttime datetime

set @starttime=getdate()

--要执行的SQL 语句

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


你可能感兴趣的:(计算sql语句的执行时间)