日期:2014-05-18 浏览次数:20435 次
CREATE PROCEDURE GetCount @iReturn int output AS select @iReturn =count(1) from t1 return 111 GO