Oracle: Funtion return cursor values
SQL> — ref cursor
SQL> create or replace package pkg_types as
2 type refcursor is ref cursor;
3 end;
4 /
Package created.SQL> create or replace function f_return_refcursor
2 return pkg_types.refcursor
3 as
4 refcur pkg_types.refcursor;
5 begin
6 open refcur for select * from emp;
7 return refcur;
8 [...]
水母壓境 北愛10萬鮭魚喪命
FYI: http://news.chinatimes.com/2007Cti/2007Cti-News/2007Cti-News-Content/0,4521,110504+112007112300502,00.html#
中國時報 2007.11.23
水母壓境 北愛10萬鮭魚喪命
《泰晤士報》報導稱,今夏英國遭遇大洪水,生態系統受到嚴重衝擊。這次水母攻擊事件不過是對氣候變化造成的生態亂象再添一筆。同樣在今年夏天,地中海沿岸海灘便因為出現大量紫水母而被迫關閉,如今紫水母已游抵英國外海,數量之多前所未見。
紫水母原本多在溫暖的水域出沒,10年前人們開始在高緯度的英國和愛爾蘭海域偶爾發現牠們的蹤跡,科學家認為這是全球氣候變暖的又一個證據。


