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

select b.name
from sysobjects a inner join syscolumns b on a.id=b.id
where a.name='存储过程名称'

 

相关文章: