DECLARE @begin datetime
DECLARE @chaju bigint
DECLARE @end datetime
SET @begin=getdate()
要执行的sql语句......
SET @end=getdate()
SELECT @chaju = datediff(Millisecond, @begin, @end)
PRINT @chaju
posted on 2007-09-28 13:02
周锐 阅读(390)
评论(0) 编辑 收藏 所属分类:
MySQL 、
Oracle 、
SQL Server