Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQL Tunning
Hi Mark,
I was only referring to the two syntax examples somewhere down this thread,
where the parens are forcing an illegal precedence (I copy and paste):
SELECT TRUNC(SYSDATE-22)/86400 from dual; SELECT (TRUNC(SYSDATE)-22)/86400 from dual;
Kind regards,
Lex.
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Powell, Mark D
Sent: Tuesday, August 03, 2004 17:12
To: 'oracle-l_at_freelists.org'
Subject: RE: SQL Tunning
Lex, I do not agree with your example. I understand your point but Oracle has supported using + and - of a number or simple numeric expression as long as I can remember:
UT1 > l
1 select to_char(trunc(sysdate),'YYYYMMDD HH24:MI:SS') as D1,
2 trunc(sysdate) - 22/86400 as D2
3* from dual
UT1 > /
D1 D2 ----------------- ---------
HTH -- Mark D Powell --
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Lex de Haan
Sent: Tuesday, August 03, 2004 12:01 PM
To: oracle-l_at_freelists.org
Subject: RE: SQL Tunning
you get errors because you cannot divide a DATE by a NUMBER --
trunc(sysdate) returns a DATE, and a DATE minus a NUMBER returns a DATE
again.
so you can only do things like:
trunc(sysdate) - (22/86400)
Kind regards,
Lex.
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Wes Brooks
Sent: Tuesday, August 03, 2004 16:54
To: oracle-l_at_freelists.org
Subject: Re: SQL Tunning
Hello expert,
Thank you very much for all of your reply.
But in my case, the 1 is variable. I tried the following but it complains that
SELECT TRUNC(SYSDATE)-22/86400 from dual;
TRUNC(SYS
SELECT TRUNC(SYSDATE-22)/86400 from dual; SELECT (TRUNC(SYSDATE)-22)/86400 from dual;
These two SQL statements gave the error:
ORA-00932: inconsistent datatypes
If I try this one, it works.
SELECT TRUNC(SYSDATE - 22), TO_DATE(TO_CHAR(TRUNC(SYSDATE-22+1),
'DD-MON-YYYY HH24:MI:SS'),
'DD-MON-YYYY HH24:MI:SS') from dual;
Is there any way to improve this lengthly statement?
Thanks,
Wes
> Hello Wes,
>
>
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- -- Binary/unsupported file stripped by Ecartis -- -- Type: text/x-vcard -- File: Lex de Haan.vcf ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- -- Binary/unsupported file stripped by Ecartis -- -- Type: text/x-vcard -- File: Lex de Haan.vcf ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Tue Aug 03 2004 - 12:00:09 CDT
![]() |
![]() |