这条存储过程为什么没有体现出速度优势啊CREATE PROCEDURE SecInfoList
AS
Select Dv_SecInfo.ID,Dv_SecInfo.ding,Dv_SecInfo.typ1,Dv_SecInfo.title,Dv_SecInfo.submit_date,Dv_SecInfo.hitnum,Dv_SecType.small From Dv_SecInfo Inner Join Dv_SecType ON Dv_SecInfo.SecType = Dv_SecType.ID order by Dv_SecInfo.ding asc,Dv_SecInfo.Submit_Date desc
GO以前执行一次需要 5 秒钟,弄成存储过程,还是需要 5 秒钟