I am making a report in ssrs.I am sending a multi value parameter(comma separted) called @partnerAlias in a report query. Depending on whether the parameter(@PartnerAlias) contains a particular value called ‘none’ or not, my query will change.How can i find whether a particular value is there in multivalue parameter using SQL so that i can put condition in query.
I am new to SQL
I am making a report in ssrs.I am sending a multi value parameter(comma separted)
Share
Multi-valued parameters in Reporting Services work just like subqueries, so you can do this sort of thing:
Likewise the
IN (@partnerAlias)clause could be in anIFstatement outside of the query: