查询SQL语句的执行速度

在各个select语句前加:
declare @d datetime
set @d=getdate()

并在select语句后加:

select [语句执行花费时间(毫秒)]=datediff(ms,@d,getdate())

另一方法:
在SQL语句前加上
set statistics time on

你可能感兴趣的:(数据库,职场,休闲)