Saturday 26 May 2012

Can an OUT parameter, v_total_marks, be referenced within the procedural code without being assigned a value? | PL SQL

 Any OUT parameter cannot be referenced without being assigned a value, as the OUT parameter cannot be assigned a default value. Therefore, the v_total_marks parameter cannot be referred within the code until the executable statements of the procedure have begun; the OUT parameter is assigned a value using the PL/SQL assignment statements.