Query to find Number of Parameters in a Stored Procedure or Function in Sql Server?

后端 未结 3 821
盖世英雄少女心
盖世英雄少女心 2020-12-19 12:59

Well, if i want to find parameter count of any stored procedure or function inside SQL SERVER, what is the correct way to do it.

Your help would be appreciated. tha

3条回答
  •  一生所求
    2020-12-19 13:55

    INFORMATION_SCHEMA.PARAMETERS should be all you need...

    SELECT  *
    FROM    INFORMATION_SCHEMA.PARAMETERS
    

提交回复
热议问题