Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイムスタンプに日を追加するにはどうすればよいですか?タイムスタンプが01-JAN-2011 11-09-05で、2日を追加する場合は、が必要です03-JAN-2011 11-09-05。
01-JAN-2011 11-09-05
03-JAN-2011 11-09-05
select '01-jan-2011 11-09-05' + interval '2' day
完全に Oracle 中心のソリューションは、Oracle の日付/タイムスタンプのデフォルトの間隔が日であるため、単純にタイムスタンプ値に 2 を追加することです。
SELECT TO_TIMESTAMP('01-jan-2011 11-09-05','DD-Mon-YYYY HH24-MI-SS') + 2 FROM dual;