如何使用sql参数为in()发送多个值

时间:2014-11-14 12:11:14

标签: c# sql-server tsql stored-procedures sqlparameters

我想这很简单,但我无法理解。 我想要它用于asp.net项目。

通常我将int for sql参数用于一个int值,但我需要它用于in()语句。

alter procedure abc
  @id int

select * from tbl where id = @id

适用于一个值,

alter procedure abc
  @id int -- how should I change it

select * from tbl where id in (@id)

我想要的那个。我怎样才能在asp.net c#中发送值。通常我发送int值,但我也不知道?

0 个答案:

没有答案