Re: One query for two information... - Mailing list pgsql-sql

From Moray McConnachie
Subject Re: One query for two information...
Date
Msg-id 00e601bfa94b$29833810$760e01a3@oucs.ox.ac.uk
Whole thread Raw
In response to One query for two information...  ("Ed" <dziablo@lords.com>)
List pgsql-sql
create function boolint (bool) RETURNS int4 AS
'SELECT CASE WHEN $1=''false'' THEN 0 ELSE 1 END;'
LANGUAGE 'sql';
SELECT SUM(boolint(fieldname)) FROM tablename;

note double single quote in 2nd line.
Yours,
Moray
----------------------------------------------------------------
Moray.McConnachie@computing-services.oxford.ac.uk
----- Original Message -----
From: "Ed" <dziablo@lords.com>
To: "pgsql sql" <pgsql-sql@postgresql.org>
Sent: Tuesday, April 18, 2000 3:26 PM
Subject: [SQL] One query for two information...


Hi,

I have a table containing only a bool filed.  I would like to know how many
records there is an on many ar true.

Is there something I could do to get both answer in only one query...   like
:

select count(*), sum(bool_col) from tablename

but there is no sum(bool) function that would add 1 if it's true and 0 if
it's false... ;(

Any idea?

Frédéric Boucher
dziablo@lords.com






pgsql-sql by date:

Previous
From: Michael Ansley
Date:
Subject: RE: DELETE FROM tableA WHERE NOT IN tableB ...
Next
From: Allan Kelly
Date:
Subject: Mystery: functions are slow with group by, but...