Friday, 25 May 2012

Give the basic block structure of a subprogram. | PL SQL

 The block structure of a subprogram is given as follows:
 <header>
 IS | AS
 Declaration Section
 BEGIN
 Executable section
 EXCEPTION (optional)
 Exception Section
 End;