Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Passing an "in" string to a Stored Procedure
I have a stored procedure that I would like to pass a parameter to that contains a list of numbers to be used as part of an "IN" for the Where clause.
SELECT * FROM table
WHERE id IN ( idlist)
idlist would be a string such as "1,2,3,4"
The problem is that the id field is a NUMBER in the database and the value passed in is a string. If only one value is passed in, an implicit conversion is done, but if more than one is provided, I get an error message indicating it is an invalid number.
Anyone have any suggestions? Received on Tue Apr 07 1998 - 00:00:00 CDT
![]() |
![]() |