Re: compare two rows

Поиск
Список
Период
Сортировка
От Ben Kim
Тема Re: compare two rows
Дата
Msg-id 20101012221055.GC985@tamu.edu
обсуждение исходный текст
Ответ на Re: compare two rows  (Richard Broersma <richard.broersma@gmail.com>)
Ответы Re: compare two rows  (Richard Broersma <richard.broersma@gmail.com>)
Re: compare two rows  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
Список pgsql-admin
Thanks.

I'm on 8.4.2.

I was not clear but the two rows are from the same table. Here's the test case.

create table test_dup (id serial primary key, val text);
insert into test_dup(val)values('some text');
insert into test_dup(val)values('some texta');

select * from test_dup;
 id |    val
----+------------
  1 | some text
  2 | some texta



How can I check whether the two rows are the same or different?


Thanks.

On Tue, Oct 12, 2010 at 02:12:36PM -0700, Richard Broersma wrote:
> On Tue, Oct 12, 2010 at 1:17 PM, Ben Kim <bkim@tamu.edu> wrote:
> > Admins,
> >
> > What is the best way to compare two rows from within psql cli client?
> >
> > It has ~30 fields, and the two rows are duplicate data but there might
> > be differences.
> >
> > id field1  field2  field3 ...
> > ===========================
> > id1 value1 value2 value3  ...
> > id2 value1 value2 value3  ...
> >
> > I could write a generic script to iterate through the list of fields and
> > compare each field values, or concatenate the fields to a string, but wondered what is out there.
> >
> > Also, is there a way around to use select row(...) = row(...)?
>
> Does: (T1.value1,T1.value2, T1.value3, ... ) IS NOT DISTINCT FROM
> (T2.value1,T2.value2, T2.value3,...)
> or: Row( T1.* ) IS NOT DISTINCT FROM ( T2.* )
> work for you?
>
>
>
>
>
> --
> Regards,
> Richard Broersma Jr.
>
> Visit the Los Angeles PostgreSQL Users Group (LAPUG)
> http://pugs.postgresql.org/lapug

В списке pgsql-admin по дате отправления:

Предыдущее
От: Richard Broersma
Дата:
Сообщение: Re: compare two rows
Следующее
От: Richard Broersma
Дата:
Сообщение: Re: compare two rows