Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Date Function needed

Re: Date Function needed

From: <e_humblot_at_wanadoo.fr>
Date: Tue, 30 Jun 1998 20:53:08 +0200
Message-ID: <6nbcr8$e3s$1@platane.wanadoo.fr>


Simply add or substract the desired number of days from your date column:

for example,

select sysdate+2 from dual;

displays the day after tomorrow.

If you have a table MYTABLE containing a date column MYDATE :

select MYDATE-2 from MYTABLE;

is another example query Received on Tue Jun 30 1998 - 13:53:08 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US