SQL操作记录 no

1。查询某个存储过程有哪些参数:

select b.name
from sysobjects a inner join syscolumns b on a.id=b.id
where a.name='存储过程名称'
原文地址:https://www.cnblogs.com/252e/p/1869715.html