Answers for "oracle sql functions example"

SQL
1

syntax of function in oracle

CREATE [OR REPLACE] FUNCTION function_name
   [ (parameter [,parameter]) ]

   RETURN return_datatype

IS | AS

   [declaration_section]

BEGIN
   executable_section

[EXCEPTION
   exception_section]

END [function_name];
Posted by: Guest on March-20-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language