I want to write a stored procedure like this
Create Proc dbo.GetApplicantsByIDs
as
Select * from Applicants where ID in (1,2,3,4)
How i can pass 1,2,3 as parameters and these ids may be multiple.
|
I want to write a stored procedure like this
How i can pass 1,2,3 as parameters and these ids may be multiple. |
|||
|
You can send your id's as XML to the SP.
The parameter string should look like this:
|
|||
|
|
|
I think there is a better solution. You can create a function like:
Then you can get the result from for input data
The result will be:
And I can rewrite your procedure as below:
|
|||
|
|
|
Another solution using table variables (for the sake of it):
Produces: 1 David 2 John 4 Anna |
|||
|
|
INto aJOINis most cases. – user166390 Mar 17 '12 at 6:14