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

From Gerardo Herzig
Subject Re: returning count(*) when it is > 1, else -1
Date
Msg-id 48F880DE.70709@fmed.uba.ar
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  (Achilleas Mantzios <achill@matrix.gatewaynet.com>)
List pgsql-sql
Richard Huxton wrote:
> Gerardo Herzig wrote:
>> But it does a doble count(*) that i must avoid.
>> I cant refer to the 'first' count like
>> select case when (select count(*) from test where id=$1 ) AS total
>>     > 0 then total
>>     else -1
>>     end;
> 
> 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
> 
Pavel, Richard, you got it dudes! I have to say, that kinda 'reference
before assingment' of "total" doesnt look logical to me.

Thanks again!!
Gerardo


pgsql-sql by date:

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