-4
可能重複:
Parameterizing an SQL IN clause?在SQL Server中傳遞參數 「IN子句」 2008年
我使用的是下面的過程 這裏我使用 「條款」 爲attendancecodeid它接受inetger的價值,我怎麼可以從vb.net傳遞參數給我的「sql程序中的子句」,我試過很多東西沒有爲我尋找解決方案,
alter procedure MPEX_SP_ActivityException_Select
@startDate date,@endDate date,@AttCode nvarchar(max)
as
begin
set nocount on
select e.employeeId,e.Badge,e.LastName,e.FirstName,a.Date,ac.code
from employee e join attendance a on a.fkEmployee=e.employeeId
join attendancecodes ac on ac.attendancecodesid=a.fkattendancecode
where a.Date between @startDate and @endDate and ac.code in (@AttCode)
end
go
在此先感謝
Arasu
嗨你能告訴我@AttCode的價值 – 2012-02-27 15:28:16
重複[參數化SQL IN子句?](http://stackoverflow.com/questions/337704/parameterizing-an-sql-in-clause)或http://stackoverflow.com/questions/2944511/sql-server-in-clause-with-a-declared-variable或其他100人 – gbn 2012-02-27 15:34:27