PL/SQL Stored Procedure and Stored Function. Write a Stored Procedure namely proc_Grade for the categorization of student. If marks scored by students in examination is <=1500 and marks>=990 then ...
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 ...