Yes, we have in-out parameter in function. we can use it in select statement.
we can have more than one OUT parameter in function.But to execute this unction all this function in anonomous block and use dbms_output.put _line :)
User Profile
Collapse
-
Last edited by rsankpal; Jul 27 '06, 06:27 AM. -
oracle object relatedquery
CREATE OR REPLACE TYPE cust_address_t
AS OBJECT (
street_address VARCHAR2(40),
postal_code VARCHAR2(10),
city VARCHAR2(30),
state_province VARCHAR2(2),
country_id VARCHAR(2));
/
CREATE OR REPLACE TYPE address_book_t AS TABLE OF cust_address_t;
CREATE TABLE cust_address (
custno NUMBER(10),
street_address VARCHAR2(40),
postal_code...
No activity results to display
Show More
Leave a comment: