在id列表中查找多个id参数

时间:2014-08-24 20:05:37

标签: sql arrays list select

我想查找字符串:' 1,5,6'

@idstofind = '1,5,6'

来自id表:

idtable
-------
10
20
1
5
9
6
10

Result
------
1
5
6

我需要这样的东西:

Select * from dbo.splitstring(@idstofind) as itf in (select * from idtable)

1 个答案:

答案 0 :(得分:0)

您可以尝试:

Select id 
  from idtable
 where id in (@idstofind)