Quick Search:
 
 The Oracle END Keyword      [Return To Index] Jump to:  

Term: END

Definition:
The Oracle PL/SQL END keyword is a mandatory keyword which terminates a PL/SQL block. It appears at the end of anonymous PL/SQL blocks, procedures, functions, packages, triggers or any other body which carries some executable action to be performed. It formally signifies the end of execution of a block.

Example Usage:

DECLARE 
A NUMBER;
BEGIN
A := 10+20;
END;


Related Links:

Related Code Snippets:
 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org