Re: checksum

Поиск
Список
Период
Сортировка
От Federico Balbi
Тема Re: checksum
Дата
Msg-id Pine.GSO.4.44.0409261329060.9095-100000@pandora2.cs.utsa.edu
обсуждение исходный текст
Ответ на Re: checksum  ("Joshua D. Drake" <jd@commandprompt.com>)
Ответы Re: checksum
Список pgsql-general
> David Helgason wrote:
>
> >>   I was wondering if PGSQL has a function similar to
> >> binary_checksum() of
> >> MS SQL Server 2000. It is pretty handy when it comes to compare rows of
> >> data instead of having to write long boolean expressions.
> >> binary_checksum() takes a list of fields and it returns an integer value
> >> which sumarize the row content.
> >
> >
> You could use the md5 function.... such as :
>
> select md5(foo) from bar where baz = 2;

Looks like md5() takes only a string. I need to pass alist of fields
instead. I was looking at the documentattion and I think I can write
soemthing like:

field1, field2, ..., fieldn = expr1, expr2, ..., exprn

This way one operator will check all the fields for equality.

Fed


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

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: checksum
Следующее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: checksum