Procedure and Funtion are subprograms that consists of a group of PL/SQL statements. This subprogram unit is stored as a database object. Once creating produre or function in a database, can call and ...
create table stud_marks(name varchar(20),total_marks int(5)); create table Result(roll_no int(3) primary key,name varchar(20),class varchar(20)); insert into stud ...