I would like to use input variables in a query. The input variable should be a set.
For example:
This is a working query:
select * from table_1
where key_1 in ('1', '2', '3')
But I would like to replace the set by an input variable
select * from table_1
where key_1 in (:input_set)
Then I would set the input to: :input_set = ('1, 2, 3')
However I cannot find a way to get this working.