PostgreSQL 編16 - 日付計算、曜日、月末日、時間計算、期間計算、日付抽出 ■年の演算(年加算、年減算) ・年の演算を行うには、次のようにする。 select current_timestamp + '1 years'; ?column? ----------------------------- 2003-11-03 17:26:35.4905+09 select current_timestamp + '-1 years'; ?column? ----------------------------- 2001-11-03 17:27:12.8085+09 ■月の演算(月加算、月減算) ・月の演算を行うには、次のようにする。 select current_timestamp + '1 months'; ?column? ---------------------------