服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - SQL Server 中查看SQL句子执行所用的时间

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

2019-11-11 15:08mssql教程网 Sql Server

在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 



执行完后点消息即可。

延伸 · 阅读

精彩推荐