Computer Science, asked by gandhipranav111, 2 months ago

Explain the syntax of creating them with example?

Answers

Answered by neeraj353193
1

Answer:

Creating a Function

CREATE [OR REPLACE] FUNCTION function_name [(parameter_name [IN | OUT | IN OUT] type [, ...])] RETURN return_datatype {IS | AS} BEGIN < function_body > END [function_name]; Where, function-name specifies the name of the function.

Similar questions