Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: A really strange problem
Try:
select * from casetext 2 where createdate = '2002-6-13';
And if that doesn't work:
select * from casetext 2 where createdate = '2002-6-13 00:00.00';
Jerason Banes
-- ____________________________________ How to manage your database in one easy step! http://www.datadino.com "Ilya Shambat" <ishambat_at_aol.com> wrote in message news:d02408fc.0206131235.2cabf009_at_posting.google.com...Received on Thu Jun 13 2002 - 16:10:36 CDT
> This is my SQL*Plus output
>
> SQL> select createdate from casetext
> 2 where textid like '44342%';
>
> CREATEDAT
> ---------
> 13-JUN-02
> 13-JUN-02
> 13-JUN-02
> 13-JUN-02
> 13-JUN-02
> 13-JUN-02
> 13-JUN-02
> 13-JUN-02
>
> 8 rows selected.
>
> SQL> select * from casetext
> 2 where createdate = '13-JUN-02';
>
> no rows selected
>
>
> How can this be?
![]() |
![]() |