Re: insert column monetary type ver 2

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Ron <ronljohnsonjr(at)gmail(dot)com>
Cc: "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: insert column monetary type ver 2
Date: 2021-11-22 15:17:13
Message-ID: 3699523.1637594233@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Ron <ronljohnsonjr(at)gmail(dot)com> writes:
> On 11/21/21 9:35 PM, Rob Sargent wrote:
>> Some of us like it as an easy formatter trick for reports

> to_char() can do the same, no?

to_char doesn't have adequate logic for locale-specific monetary formatting.
You can get it to emit a locale-specific currency symbol, but it has no
clue whether that should go before or after the value. It knows nothing
of other locale-specific details, such as possibly using parens in place
of a minus sign. Also, the POSIX API allows monetary decimal point and
thousands separators to be different from the numeric ones that to_char
knows about. (I have no idea which locales use that, but I doubt they'd
have put in that complication without need.)

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Дмитрий Иванов 2021-11-22 15:31:48 Re: pg_dump insert column GENERATED
Previous Message Дмитрий Иванов 2021-11-22 15:12:11 Re: pg_dump insert column GENERATED