| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.oracle -> Passing multi values into an in clause via a parameter in a store procedure
I am trying to pass multi values into a where clause with an in clause in a store procedure to use in a Crystal report. This can change depending on the user. Maybe there is another way to pass multi values.
CREATE OR REPLACE PROCEDURE eva_sp_wrk014_spec_test (
p_eva_product_header_ids IN VARCHAR2, cur_spec_cd IN OUT
SELECT *
FROM sysadm.eva_product_header eph
WHERE eph.eva_product_header_id in (p_eva_product_header_ids);
END eva_sp_wrk014_spec_test;
Received on Tue Jan 27 2004 - 15:01:24 CST
![]() |
![]() |