Re: Whole-row comparison ? - Mailing list pgsql-sql

From Richard Broersma Jr
Subject Re: Whole-row comparison ?
Date
Msg-id 457481.33047.qm@web31807.mail.mud.yahoo.com
Whole thread Raw
In response to Whole-row comparison ?  (<christian.roche.ext@nsn.com>)
List pgsql-sql
> So my question is: is there a way to do some kind of whole-row
> comparison ? For instance a hash of the full row or something similar ?
> Is there a standard way of solving this problem ?

Sure it is called row wise comparison:
http://www.postgresql.org/docs/8.2/interactive/functions-comparisons.html#ROW-WISE-COMPARISON

you can write something like:

SELECT * FROM Your_tableWHERE (c1,c2,c3,c4) = ('a',2,'xyz',123);

Regards,
Richard Broersma Jr.


pgsql-sql by date:

Previous
From:
Date:
Subject: Whole-row comparison ?
Next
From: Richard Broersma Jr
Date:
Subject: Re: Whole-row comparison ?