Re: TO_CHAR and Separate thousand

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Paulo Cuellas <paulo(at)ibiz(dot)com(dot)br>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: TO_CHAR and Separate thousand
Date: 2005-11-03 20:11:34
Message-ID: 200511032011.jA3KBYM20338@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Paulo Cuellas wrote:
> Hi People,
>
> Someone can say if its possible use TO_CHAR to define point "." like
> separate thousands ?
>
> Thank you so much for any help.

Sure, our documentation has a few examples:

to_char(148.5, '999D999') ' 148,500'
to_char(3148.5, '9G999D999') ' 3 148,500'

Here, the locale has the thousands separator as space. I am assuming
your locale is set up with the thousands marker as period. Are you
asking for the period as the thousands separator even though your locale
isn't set that way?

PostgreSQL 8.1 RC1 also has psql '\pset numericlocale' which outputs all
numerics in locale-specific format, but again that is going to be all
driven by locale.

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2005-11-03 20:19:41 Re: pgsql: Rename the members of CommandDest enum so
Previous Message Alvaro Herrera 2005-11-03 20:02:51 pgsql: Fix one overlooked ocurrence of "None" in EXEC_BACKEND block.