oracle current date plus 1 month

Solutions on MaxInterview for oracle current date plus 1 month by the best coders in the world

showing results for - "oracle current date plus 1 month"
Toryn
18 Aug 2020
1SELECT sysdate + 1 FROM dual; 				-- Tomorrow    12/01/2021 14:27:27
2SELECT trunc(sysdate) + 1 FROM dual; 		-- Tomorrow    12/01/2021 00:00:00
3SELECT sysdate + INTERVAL '20' DAY FROM DUAL;		-- 20 days ahead (other way)
4SELECT sysdate + 1 / 24 FROM dual;					-- 1 hour ahead
5SELECT sysdate + 1 / 24 / 60 FROM dual;				-- 1 minute ahead
6SELECT add_months(trunc(sysdate), 1) FROM dual;   	-- 1 month ahead (no time)
7SELECT trunc(sysdate) + 30 FROM dual;				-- 30 days ahead (no time)
8SELECT add_months(trunc(sysdate), +12*2) FROM dual;	-- 2 years ahead (no time)