Hello,
I have a stored procedure and I want to pass it a NUMBER parameter to
make a select inside it as the following:
SELECT *
FROM example_table
WHERE example_table.i d IN (1,3,4,6,7,8,23 4);
I want to pass the Stored Procedure "1,3,4,6,7,8,23 4" as a Integer
Array, is this possible?
Thanks & Regards.
I have a stored procedure and I want to pass it a NUMBER parameter to
make a select inside it as the following:
SELECT *
FROM example_table
WHERE example_table.i d IN (1,3,4,6,7,8,23 4);
I want to pass the Stored Procedure "1,3,4,6,7,8,23 4" as a Integer
Array, is this possible?
Thanks & Regards.