I am using plsql procedure in oracle . I need to retrieve more than one rows. My partial code..
CREATE OR REPLACE procedure PC_APP.Test_proc1( ) is
BEGIN
SELECT * from table;
END;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will need to use Ref Cursors to allow recordsets to be returned from stored procedures and functions .
On command line