Re: Calculating percentages in Postgresql - Mailing list pgsql-general

From Richard Huxton
Subject Re: Calculating percentages in Postgresql
Date
Msg-id 45630BC3.4070000@archonet.com
Whole thread Raw
In response to Calculating percentages in Postgresql  (Peter Nixonn <listuser@peternixon.net>)
List pgsql-general
Peter Nixonn wrote:
> Hi Guys
>
>
> Has anyone written a postgres function to calculate percentages without
> giving "ERROR:  division by zero" when fed zeros?

Almost certainly. The question is, what do *you* want it to do?

You'll want to customise something like:

CREATE FUNCTION percent_plus(int4, int4) RETURNS int4 AS $$
   SELECT CASE WHEN $2=0 THEN -1 ELSE ($1*100)/$2 END;
$$ LANGUAGE SQL;

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: Desmond Coughlan
Date:
Subject: more on database design
Next
From: "Wm.A.Stafford"
Date:
Subject: Thanks for all the help on replacing 'unique'