Practical of Function and Procedure Bases pl/sql
PRACTICAL-9 Aim :- FUNCTION AND PROCEDURE BASED PL/SQL PROGRAMS 1. Create a Function which will work as addition e.g select ADDITION(10,10) from dual; Ans:- create or replace function addition(a1 in number,a2 in number) return number is ans number; begin ans:=a1+a2; ...