Oracle
一、游标
create or replace function get_data
return sys_refcursor
is
data sys_refcursor;
begin
open data for
select id,name,age
from tes
微信扫一扫
create or replace function get_data
return sys_refcursor
is
data sys_refcursor;
begin
open data for
select id,name,age
from tes
相关推荐