返回SQL执行时间的存储过程

前端之家收集整理的这篇文章主要介绍了返回SQL执行时间的存储过程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="41765" class="copybut" id="copybut41765" onclick="doCopy('code41765')"> 代码如下:

<div class="codebody" id="code41765">
USE NBDXMIS
CREATE proc TestTimeAnySentence
@sql_where varchar(8000)
as
declare @ct datetime
set @ct = getdate()
declare @newsql_where varchar(8000)
set @newsql_where=@sql_where
exec(@newsql_where)
select datediff(ms,@ct,getdate()) as '查询时间(毫秒)'
go
TestTimeAnySentence 'select * from 水费表 where 费用ID<200000'

原文链接:https://www.f2er.com/mssql/64255.html

猜你在找的MsSQL相关文章