From: | Kevin Grittner <kgrittn(at)ymail(dot)com> |
---|---|
To: | e-letter <inpost(at)gmail(dot)com>, "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org> |
Subject: | Re: apply sum function after group by extract month date |
Date: | 2013-09-10 18:49:36 |
Message-ID: | 1378838976.57712.YahooMailNeo@web162902.mail.bf1.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-novice |
e-letter <inpost(at)gmail(dot)com> wrote:
I didn't understand the first part of your question. Be sure you
are clear about selecting a set of rows based on date and grouping
(summarizing) rows based on date (or some part of date?).
> How to change currency unit for the data type money, i.e. to
> change the currency sign from dollar ($) shown in a query result?
How do you have the locale information set? In particular,
lc_monetary?
test=# show lc_monetary ;
lc_monetary
-------------
en_US.UTF-8
(1 row)
test=# select '123.45'::money;
money
---------
$123.45
(1 row)
test=# set lc_monetary = 'en_GB.UTF-8';
SET
test=# select '123.45'::money;
money
---------
£123.45
(1 row)
--
Kevin Grittner
EDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | Vivek Singh Raghuwanshi | 2013-09-11 08:03:20 | problem in installation of postgresql-jdbc |
Previous Message | David Johnston | 2013-09-10 16:00:34 | Re: Running two queries concurrently? |