How to call two procedures in a select query
e.g:
SELECT sp_get_input_xml (:in_request_oid,
:in_contract_oid,
:in_contract_type,
:out_input_xml
),
sp_get_output_xml (:in_request_oid,
:in_contract_oid,
:in_contract_type,
:out_output_xml
)
FROM DUAL;
What s the correct way to call two procedures using select statement?