| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: function NOW() to return sysdate
Neil Zanella <nzanella_at_cs.mun.ca> wrote in message news:<Pine.LNX.4.44.0310290508540.14042-100000_at_garfield.cs.mun.ca>...
> Hello,
>
> I would like to write an Oracle function called NOW() for compatibility
> with PostgreSQL. I would like such a function to simply return sysdate.
> I would also like to set the date format to standard Unix 'date -I' AKA
> ISO 8601 format. Anyone know how these portability tasks could be
> accomplished?
>
> Thanks,
>
> Neil
That is a pretty simple task. Open the SQL manual and look at the Oracle provided date functions. In specific to_char, which can format dates and numbers just about any way you want.
UT1> select to_char(sysdate,'dd/mm/yyyy') as thedate from sys.dual;
THEDATE
Then look up "Create or Replace Function"
HTH -- Mark D Powell -- Received on Wed Oct 29 2003 - 07:46:47 CST
![]() |
![]() |