Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
atlachar123456
Starting Member
33 Posts |
Posted - 2011-11-17 : 10:54:44
|
Hi, I have a procedure with two input parameters @bank and another one is @productid,for these two parametrs i want to write a code in the procedure that option to seelct multi selction;for this i will put in the report properties change to single select to multi selectbut in the procedure we need to handle...i have a code for single selction and for ALL in my procedurefor single selection IF(@productid IS NOT NULL) AND (@productid <> 0) BEGIN DELETE FROM #Rpt22036WorkTable WHERE ISNULL(productid,0) <> @productid ENDand for ALL means here 0 for this i have..IF (@productid IS NULL) SELECT @productid = 0 ELSE SELECT @productid = @productidand i need a code here for @bank and @productid how to multi select the list in the drop down.... can anyone help me.. atlaaaaaaaa |
|
Lamprey
Master Smack Fu Yak Hacker
4614 Posts |
|
atlachar123456
Starting Member
33 Posts |
Posted - 2011-11-17 : 11:29:23
|
Then whom i have to post the questionsatlaaaaaaaa |
 |
|
Lamprey
Master Smack Fu Yak Hacker
4614 Posts |
Posted - 2011-11-17 : 11:33:58
|
Sentence what? |
 |
|
|
|
|