可能重复:
T-SQL stored procedure that accepts multiple Id values
如何在SQL Server中使用“in”运算符时为单个参数添加多个值 '存储过程'
例如:
create procedure ProcEmployee ( @DeptID int )
as
begin
select* from employee where **DeptID in (@DeptID)**
end
从上面的例子中,我需要为参数'@DeptID'
传递多个值