我有两个参数,@AccountID
and @SourceType
,它们都是下拉菜单。
这是@SourceType
存储过程中参数的声明:
@SourceType BIT = NULL,
/*
* Works if @AccountID is not null
* (should only be used if @AccountID has a single value)
*
* 0 - Owned by @AccountID
* 1 - External (not owned by @AccountID)
*/
只有在 AccountID 具有单个值(并且它是具有大约 50 个选项的多选)时,它才应该是可选的。