Guest User

Untitled

a guest
Nov 22nd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. 1 create or replace function DETAILS(stid in number , endid in number) return
  2. 2 sys_refcursor as
  3. 3 details sys_refcursor
  4. 4 begin
  5. 5 open details for
  6. 6 select * from student where id>=stid and id<=endid;
  7. 7* end;
Add Comment
Please, Sign In to add comment