top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Oracle: How can I get the difference between two date columns?

0 votes
389 views
Oracle: How can I get the difference between two date columns?
posted Feb 4, 2015 by Archana

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

This Example Query Will Find the No of Days In between the Two Dates.

SELECT DateField1NAME - DateField2NAME FROM TABLENAME

answer Feb 4, 2015 by Balamurugan Kn
...