I have a function with parameters of numerical type, I have done the query successfully, my problems is that I do not know how to pass several parameters within the IN, where id in(parameter).
The id is of type BIGINT
From JAVA I have the following query:
select parametro1, parametro2, parametro3 from function_detalls ("parameters");
Where parameters is a string type 1,2,3,4,5,6,7, ....
My question is how can I pass this type of parameter to the function?