Quick Search:
 
 The Oracle PL/SQL IS Keyword      [Return To Index] Jump to:  

Term: IS

Definition:
The Oracle PL/SQL IS keyword appears in the subprogram definitions of both procedures and functions. It logically unites the header and declarative part of a subprogram. AS is an alias keyword which can be used in place of IS.

Example Usage:

CREATE OR REPLACE PROCEDURE P_SAL
IS
BEGIN
...
...
END;


CREATE OR REPLACE FUNCTION F_SAL
RETURN NUMBER
IS
BEGIN
...
...
END;


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