Hi
I have a stored procedure that has a multi-value parameter. The parameter called GetFruitNames will have a value such as
'kiwifruit,pear,orange'
In the select statement I have the folowing
select
fruitnames
from fruit
where
fruitnames in (GetFruitNames)
The GetFruitNames parameter has to be changed to
'kiwifruit','pear','orange'
does any know how to do this?
Thank you
Mark
I have a stored procedure that has a multi-value parameter. The parameter called GetFruitNames will have a value such as
'kiwifruit,pear,orange'
In the select statement I have the folowing
select
fruitnames
from fruit
where
fruitnames in (GetFruitNames)
The GetFruitNames parameter has to be changed to
'kiwifruit','pear','orange'
does any know how to do this?
Thank you
Mark