Re: returning count(*) when it is > 1, else -1 - Mailing list pgsql-sql

From Tom Lane
Subject Re: returning count(*) when it is > 1, else -1
Date
Msg-id 14252.1224246752@sss.pgh.pa.us
Whole thread Raw
In response to Re: returning count(*) when it is > 1, else -1  (Richard Huxton <dev@archonet.com>)
Responses Re: returning count(*) when it is > 1, else -1  (Gerardo Herzig <gherzig@fmed.uba.ar>)
List pgsql-sql
Richard Huxton <dev@archonet.com> writes:
> SELECT
>   CASE WHEN total >0 THEN total ELSE -1 END AS new_total
> FROM (
>   SELECT count(*) AS total FROM test WHERE id=$1
> ) AS raw_total

Actually you could just do

SELECT CASE WHEN count(*) >0 THEN count(*) ELSE -1 END AS total
FROM test WHERE id=$1;

PG has avoided redundant calculations of duplicate aggregates for some
time.  (This doesn't help in the original formulation because it
actually had two different sub-selects; the case that is handled is
identical aggregate expressions within SELECT list or HAVING of a single
SELECT.)
        regards, tom lane


pgsql-sql by date:

Previous
From: Achilleas Mantzios
Date:
Subject: Re: returning count(*) when it is > 1, else -1
Next
From: Gerardo Herzig
Date:
Subject: Re: returning count(*) when it is > 1, else -1