Here is the query I want to execute:
select UNNEST(:vals)
where vals='val1','val1',...
.
The issues with this is that I am getting ERROR: function unnest(unknown, unknown) does not exist
as UNNEST
takes an array.So, is there a way to do it?
Here is the query I want to execute:
select UNNEST(:vals)
where vals='val1','val1',...
.
The issues with this is that I am getting ERROR: function unnest(unknown, unknown) does not exist
as UNNEST
takes an array.So, is there a way to do it?