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

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

 

相关文章:

  • 2021-09-05
  • 2021-08-27
  • 2021-07-04
  • 2021-05-20
  • 2021-12-19
  • 2021-08-01
  • 2021-12-23
  • 2021-05-13
猜你喜欢
  • 2022-12-23
  • 2021-05-21
  • 2022-03-08
  • 2022-01-03
  • 2021-09-26
  • 2022-12-23
  • 2021-07-22
相关资源
相似解决方案