I am trying to create a report against MSSQL with a basic in clause.
I can create a row selector in the UI to create the dataset of values to pass to the report parameters, but then getting a dataset into the IN clause of the SQL Query seems impossible. Does anyone have any examples of this?
SELECT
*
FROM
table t
WHERE
t.name IN (?)
I want to be able to pass the Dataset parameter directly to the Query. Ex: {NameValues}