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

复制代码 代码如下:

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’

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐