Question: Based on the in class examples from Flat file function proc example.sql 1 . Create and test a Function named ( f _ {
Based on the in class examples from Flat file function proc example.sql
Create and test a Function named fadd that accepts one integer parameter. The function then adds and returns the result as an Integer.
This should work against your function: select fadd from dual;
Create and test a Procedure named paddNumbers that accepts two integers as parameters. The Procedure should then add the integers together and return an integer result.
The following should work against your Procedure:
call paddNumbers @mySum;
select @mySum;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
