Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to get the DATE part of a DATETIME datatype?
In Oracle datetime datatype??? It must be timestamp
Is this what you want?
SQL> create table x (datum timestamp);
Table created.
SQL> insert into x values (sysdate);
1 row created.
SQL> select * from x;
DATUM
Sameer
PWalker wrote:
> Hi. Sorry I think i posted this message in the wrong forum...
>
> I was hoping someone could help me. I am trying to display the time part
> of a datetime datatype in my query (in this isntance the column containing
> the datetime datatype is called 'starttime'). How does one accomplish this?
> I want to see the time via a simple select statement:
>
> select starttime from mytable;
>
> I was trying to use 'convert' statements, but I wasnt able to get it
> working. Could someone tell me how to do this? I do not want to start
> configuring system files as the server is fairly locked down.
>
> Could anyone point me in the right direction?
>
> Thanks!
>
> cheers, peter
Received on Thu Jun 23 2005 - 15:38:41 CDT
![]() |
![]() |