Steve Crawford wrote on 01.07.2009 00:39:
I believe count will only count not-nullcanon=# select count(maf) from gallo.sds_seq_reg_shw canon-# where maf ISNULL;
Correct SELECT count(some_col) FROM some_table; is the same as SELECT count(*) FROM some_table WHERE some_col IS NOT NULL; -- Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-sql