Hello all,
If you want to build a Custom Query in Workflow that takes a list of values as a parameter, what would the syntax of the parameter be? For example, I want to achieve something like this
select SomeValue from SomeTable
where Color in ('Red','Green','Blue')
with a custom query like this
select SomeValue from SomeTable
where Color in (?)
with a param value like this
'Red','Green','Blue'
Can it be done?