Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Extract same datetime records
KK wrote:
> Hi,
>
>
> How to extract the records of same datetime from a table?
>
>
> I have a table 'tbl' with datatime column 'call_time'. there is no
> unique constraint or primarykey.
>
>
> How can I extract only the records of same call_time values?
>
>
> Pls assist.
>
>
> Regards.
>
They are all the same. Or similar to itself.
Maybe you mean: where call_time has a certain value?
try:
where call_time = to_date('20050517 20:18:30','YYYYMMDD HH24:MI:SS')
-- Regards, Frank van BortelReceived on Tue May 17 2005 - 13:19:24 CDT
![]() |
![]() |