首页 > 数据库 > SQL Server > 正文

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

2024-08-31 00:59:15
字体:
来源:转载
供稿:网友

复制代码 代码如下:


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'

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表