得出SQL语句的执行时间的方法 dn001 2009-06-08 15:17:16 select语句前加:declare @d datetimeset @d=getdate()并在select语句后加:select [语句执行花费时间(毫秒)]=datediff(ms,@d,getdate())