On 7/28/2011 11:40 AM, Michael Nolan wrote:
Why does this query succeed: select count(*) from tablename where xmin = 2 while this query fails: select count(*) from tablename where xmin != 2
You probably want <>. select count(*) from tablename where xmin <> 2 -Andy -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general