| http://www.w3.org/ns/prov#value | - I would like to convert an array of strings into a single string with all the values.Here is an example of a main query of a report:SELECT Code, @PromptFromBusinessObjects AS ValuesSelected FROM TableWHERE Code IN( @PromptFromBusinessObjects )If I select one value, there is no error:SELECT Code, 'Value1' AS ValuesSelected FROM TableWHERE Code IN( 'Value1' )But If I select two or more values I have go
|