Re: chop off non-meaningful digits - Mailing list pgsql-general

From Shoaib Mir
Subject Re: chop off non-meaningful digits
Date
Msg-id bf54be870611130553u71dc72c4tb92ef64e85b12d06@mail.gmail.com
Whole thread Raw
In response to chop off non-meaningful digits  ("SunWuKung" <Balazs.Klein@t-online.hu>)
List pgsql-general
ROUND function might help you there:

select round(1.2000::numeric, 1);

Regards,
--------
Shoaib Mir
EnterpriseDB (www.enterprisedb.com)

On 13 Nov 2006 05:45:44 -0800, SunWuKung <Balazs.Klein@t-online.hu> wrote:
What would be the easiest way to get back only the meaningful digits of
a numeric value in a pgsql function? eg?

1.002 --> 1.002
1.020 --> 1.02
1.200 --> 1.2
1.000 --> 1

Thanks
SWK


---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

pgsql-general by date:

Previous
From: "Raymond O'Donnell"
Date:
Subject: Re: chop off non-meaningful digits
Next
From: "A. Kretschmer"
Date:
Subject: Re: chop off non-meaningful digits