如何在查询分析器中显示sql语句的精确执行时间(精确到ms)?_


declare   @time   datetime  
  set   @time   =   getdate()  
   
select top 100 * from xx order by xx
    
  select   datediff(ms,@time,getdate())
原文地址:https://www.cnblogs.com/yuanws/p/1340069.html