程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> OracleTableFunction

OracleTableFunction

編輯:Oracle教程

Oracle Table Function在Oracle9i時引入,完美的兼容了view和存儲過程的優點:

\

應用舉例:

1.Table()函數:

set feedback off

create or replace type type_int_date_varchar2  as object (i integer, d date, v varchar2(99))
/

create or replace type table_int_date_varchar2 as table of 
type_int_date_varchar2
/

create or replace function f_int_date_varchar2 return table_int_date_varchar2 as
  a_type_int_date_varchar2 table_int_date_varchar2 := table_int_date_varchar2();
begin

  a_type_int_date_varchar2.extend;
  a_type_int_date_varchar2(a_type_int_date_varchar2.count) := 
    type_int_date_varchar2(1,to_date('08.01.1947','dd.mm.yyyy'), 'David Bowie');

  a_type_int_date_varchar2.extend;
  a_type_int_date_varchar2(a_type_int_date_varchar2.count) := 
    type_int_date_varchar2(2,to_date('27.01.1756','dd.mm.yyyy'), 'Mozart');

  return a_type_int_date_varchar2;
end;
/

select * from table (cast (f_int_date_varchar2() as table_int_date_varchar2));

drop function f_int_date_varchar2;
drop type table_int_date_varchar2;
drop type type_int_date_varchar2;

2.A Function that returns a table of dates in a Range

create or replace type date_obj as object (dt date)
/

create or replace type date_table as table of date_obj
/

create or replace function date_range(from_dt in date, to_dt in date) 
  return date_table as
    a_date_table date_table := date_table();
    cur_dt date:=from_dt;
  begin
    while cur_dt <= to_dt loop
      a_date_table.extend;
      a_date_table(a_date_table.count) := date_obj(cur_dt);
      cur_dt := cur_dt + 1;
    end loop;
  return a_date_table;
end date_range;
/
select * from  table (
cast ( date_range(
    to_date('01.01.2002','dd.mm.yyyy'),
    to_date('31.01.2002','dd.mm.yyyy')
  ) 
as date_table
));

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved