Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: ??? Number of days betwwen two dates?
I'm sure you figured out that to accurately calculate the number of whole days between two dates is subtraction with truncation. For example,
Select trunc(First_date)-trunc(Second_date) from dual;
Truncate-ing will leave only the whole number difference.
Jack Received on Tue Aug 05 1997 - 00:00:00 CDT
![]() |
![]() |