2011/03/02

日付の計算 (Adding days to a date)

日付に加算・減算を行うには xdoxslt:ora_format_date_offset を使用します。書式は以下の通りです。
<?xdoxslt:ora_format_date_offset(date, offset, 'operator')?>

前日の日付を表示する場合は以下のように offset に1、operator にマイナス記号を設定します。
<?xdoxslt:ora_format_date_offset(HIREDATE, 1, '-')?>


また、参考URLで紹介されているように、offset に列名を指定することもできます。以下の例では INVOICE_DATE の INVOICE_TERM 日後の日付が取得できます。
<?xdoxslt:ora_format_date_offset(INVOICE_DATE, INVOICE_TERMS, '+')?>


参考URL:



[ Summary ]
xdoxslt:ora_format_date_offset provides date value addition and subtraction.  See the formula above.


Refer the URL above for more details.

0 件のコメント:

コメントを投稿