从存储过程中读取相关信息
select '参数名称' = name,
'参数类型' = type_name(xusertype),
'参数长度' = length,
'参数顺序' = colid,
'是否输出参数'=isoutparam
from syscolumns
where id=object_id('存储过程名称')


























select '参数名称' = name,
'参数类型' = type_name(xusertype),
'参数长度' = length,
'参数顺序' = colid,
'是否输出参数'=isoutparam
from syscolumns
where id=object_id('存储过程名称')
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。