是否有任何信息可以获取存储过程输入参数的默认值?

Is there any Information to get default value of stored procedure Input parameters?

是否有获取存储过程默认值的信息输入参数是SQL服务器端?

I can get information about stored procedure input parameters via INFORMATION_SCHEMA.PARAMETERS but this table does not give any info about Default Value of the parameters.

The value of each declared parameter must be supplied by the user when the procedure is called, unless a default for the parameter is defined or the value is set to equal another parameter.

并且所有参数都可以为 null,因为所有数据类型都接受 null。
您可以通过为其设置默认值来不提示参数。

您可以使用 sys.parameters table 查看默认值。