Oracle PL/SQL: Read just one column from SYS_REFCURSOR using XML transformation
Using XML transformation in a cursor in Oracle PL/SQL, we can fetch just one column of the recordset returned back by a SYS_REFCURSOR:declare the_sys_refcursor sys_Refcursor; P_Return_Set_O sys_Refcursor; p_column_name …