Hi,
I am trying to pass multiple values to single parameter.I am using this query in dataset but i am not getting any result it returns blank what should I do where to write this query?????
"SELECT <column> FROM <table> WHERE <column> in ('" & Join(Parameters!Location.Value, "', '") &"')"
I have read the block of Jinchun Chen ,he has given the answer
"The
query should be:
="SELECT a, b, c, CName
FROM Table1
Where CName IN ('"+Join(Parameters!Parameter1.Value, "','") + "')"
With the "=", the First" " ", and then last " " "
what does this line mean in the answer
With the "=", the First" " ", and then last " " "
Thanks