/****************************
取兩個年月之間的所有年月放入到typ_str_tab中
written by:wonder
modified by:
****************************/
function getyearmonthbetween(prm_begin_aae002 varchar2,
prm_end_aae002 varchar2,
prm_errmsg out varchar2) return pkg_a_comm.typ_tab_str is
ltab_str pkg_a_comm.typ_tab_str;
current_aae002 date;
begin
prm_errmsg := '';
current_aae002 := to_date(prm_begin_aae002, 'yyyymm');
while to_char(current_aae002, 'yyyymm') <> prm_end_aae002 loop
current_aae002 := add_months(current_aae002, 1);
ltab_str(ltab_str.count + 1) := to_char(current_aae002, 'yyyymm');
end loop;
return ltab_str;
end;
儲存某兩個年 月之間所有年 月
儲存某兩個年 月之間所有年 月 public static string findny string by,string bm,string ey,string em else if i 0 integer.parseint ey integer.parseint by else i else if...
Java 計算兩個日期之間的差 年 月 日
在專案中有這樣的需求 需要顯示剩餘的年月日。如下表 起始時間 截至期 有效期 2011 01 01 2013 12 31 3年 2011 01 01 2011 01 01 1天 處理平台的時間轉換 author alf 2011 8 31 上午09 21 39 public class dateha...
Java 計算兩個日期之間的差 年 月 日
在專案中有這樣的需求 需要顯示剩餘的年月日。如下表 起始時間 截至期 有效期 2011 01 01 2013 12 31 3年 2011 01 01 2011 01 01 1天 處理平台的時間轉換 author alf 2011 8 31 上午09 21 39 public class dateha...