欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

SQL Server 中查看SQL句子执行所用的时间

程序员文章站 2022-06-16 15:01:15
...

在MSSQL Server中通过查看SQL语句执行所用的时间,来衡量SQL语句的性能。

代码如下:
set statistics profile on
set statistics io on
set statistics time on
go

你执行的SQL语句
代码如下:
go
set statistics profile off
set statistics io off
set statistics time off


执行完后点消息即可。