乙個簡單的oracle函式返回陣列的例子 zz

2021-05-23 01:55:54 字數 605 閱讀 8103

乙個簡單的oracle函式返回陣列的例子[zz]

create or replace type t_ret_table is table of varchar2(20);

create or replace function f_test(var_num in integer) return t_ret_table is

var_out t_ret_table;

begin

var_out := t_ret_table();

var_out.extend(var_num);

for i in 1..var_num loop

var_out(i) := i;

end loop;

return var_out;

end f_test;/

set serverout on

declare

aa t_ret_table;

begin

aa := f_test(10);

for i in 1..aa.count loop

dbms_output.put_line(aa(i));

end loop;

end;/

oracle 函式返回乙個集合

create or replace function text starttime in varchar2,endtime in varchar2,timetype in number,spid in number,pagesize in number,currentpage in number,d...

乙個oracle函式返回陣列的例子

create or replace type t ret table is table of varchar2 20 create or replace function f test var num in integer return t ret table is var out t ret ta...

乙個簡單的返回頂部效果

經常會在網頁中看到返回頂部的功能,但是大多數都是採用簡單的錨點直接定位到頂部,對使用者來說顯得太突兀,平緩過渡應該是一種比較好的使用者體驗。但是從效能上來講,直接定位到頂部毋須使用指令碼,效能更高。這個簡單的測試例子效果如下 定位到錨點 測試文字 測試文字 測試文字 測試文字 測試文字 測試文字 測...