On Tuesday 14 June 2005 12:44 pm, Ângelo Marcos Rigo wrote:
> Hi can i format dates from postgresql stored in the
> aaa-mm-dd format to June 14 2005 - Tuesday ?
>
> using just postgresql functions?
select to_char(now(), 'FMMonth dd yyyy - FMDay');
See to_char() documentation for more.
Cheers,
Steve