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

Home -> Community -> Usenet -> c.d.o.server -> Re: How to compare a date to sysdate

Re: How to compare a date to sysdate

From: Nicolas Bronke <NBronke_at_TRINITY.de>
Date: Thu, 4 Mar 1999 19:49:59 +0100
Message-ID: <36ded508@news.uk.ibm.net>

A-Friend schrieb in Nachricht <7blp9j$dmu$1_at_fe2.cs.interbusiness.it>...
>SQL> select * from tab1row where to_char(readdate,'dd-mon-yyyy') =
>to_char(sysdate,'dd-mon-yyyy');

You should think about
SQlL> select * from tab1row where trunc(readdate) =trunc(sysdate); Received on Thu Mar 04 1999 - 12:49:59 CST

Original text of this message

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