Tingkatkan tanggal satu hari di SQL Oracle

SELECT 
order_id, 
order_date + 1 AS "Next Order Date", 
FROM orders; 
Magnificent Millipede