パソいろ トップ > PostgreSQLで日付の計算

PostgreSQLで日付の計算

■年の演算(年加算、年減算)

  ・年の演算を行う

select current_timestamp + '1 years';

select current_timestamp + '-1 years';


■月の演算(月加算、月減算)

  ・月の演算を行う

select current_timestamp + '1 months';





関連 2012-07-22 14:55:39