SQL Server 中查看SQL句子执行所用的时间
编程学习 2021-07-05 13:42www.dzhlxh.cn编程入门
在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
执行完后点消息即可。
上一篇:模糊查询的通用存储过程
下一篇:MySql 安装时的1045错误