-
DATEDIFF function in Oracle like SQL Server
Hi guys, hope everyone is good
Can someone tell me the equivalent for the SQL Server DATEDIFF function in Oracle
For example, in Microsoft SQl server, I can do
This gives the difference in number of days between date_var and GETDATE(). Now what's the equivalent in Oracle. If i doCode :SELECT DATEDIFF(dd, date_var , GETDATE())
, it gives me an error ORA-00932: inconsistent datatypes: expected NUMBER got INTERVAL, what am i missing here?Code :select date_var-sysdate from temp
Regards,
Simona
- Club-Oracle Complementary E-Books and Magazines
Get your free Complementary Copy of Oracle Magazine
You can also browse the Free Magazines and E-Books section to see the complete list of free magazines, e-books and Whitepapers.
-
Re: DATEDIFF function in Oracle like SQL Server
did u say "got interval", try this
Code :select (SYSTIMESTAMP - date_var) from temp
-
Re: DATEDIFF function in Oracle like SQL Server
First all , you didn't mentioned about the data type of date_var.
If it is non-date datatype , that needs to be converted to date while doing such operations.
Code :SQL> SELECT SYSDATE - TO_DATE('20081205','YYYYMMDD') datediff FROM DUAL;
DATEDIFF
----------
80.4018519
SQL> SELECT TRUNC(SYSDATE) - TO_DATE('20081205','YYYYMMDD') datediff FROM DUAL;
DATEDIFF
----------
80
SQL>Last edited by rajavu; 02-23-2009 at 04:13 AM.

Raj.
Similar Threads
-
How to use hypertext content server forms (HCSF) in stellent content server ??
By yaznesh in forum Oracle Fusion MiddlewareReplies: 5Last Post: 03-05-2010, 03:33 PM -
Connection Server : Launch Archiver for Content Server not working
By noel in forum Oracle Fusion MiddlewareReplies: 1Last Post: 02-26-2009, 07:24 AM -
How to pass parameters to a pl/sql function from Oracle Discoverer Desktop?
By Gabo86 in forum Oracle Developer Suite and ToolsReplies: 3Last Post: 02-24-2009, 10:00 AM -
PL/SQL function to return more than one value
By oracle_new in forum SQL PL/SQLReplies: 2Last Post: 01-28-2009, 12:46 PM -
Aggregate function in SQL Server
By sowmyav in forum Other DatabasesReplies: 4Last Post: 01-16-2009, 07:12 AM


LinkBack URL
About LinkBacks
Reply With Quote


