如何在“SQL查询存储过程”中使用“in”运算符,在单个参数中传递多个值

时间:2011-05-31 11:26:27

标签: sql-server stored-procedures

  

可能重复:
  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'

传递多个值

0 个答案:

没有答案