Re: count the number of bits set to 1 in a bit string field

Поиск
Список
Период
Сортировка
От Ragnar
Тема Re: count the number of bits set to 1 in a bit string field
Дата
Msg-id 1184541609.5778.159.camel@localhost.localdomain
обсуждение исходный текст
Ответ на count the number of bits set to 1 in a bit string field  (Rajarshi Guha <rguha@indiana.edu>)
Ответы Re: count the number of bits set to 1 in a bit string field  (Rajarshi Guha <rguha@indiana.edu>)
Список pgsql-general
On sun, 2007-07-15 at 15:35 -0400, Rajarshi Guha wrote:
> Hi, is there a built in function that will give me the number of bits
> that are set to 1 in a bit string field?

no, but it should be trivial to do with pl/pgsql

a naive implementation could be:

create or replace function bitsetlen(bit) returns int as $$
declare i int;
        c int;
begin
    c:=0;
    for i in 1..length($1) loop
        if substring($1,i,1)=B'1' then
            c:=c+1;
        end if;
    end loop;
    return c;
end;
$$ language plpgsql;


gnari



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

Предыдущее
От: novnov
Дата:
Сообщение: Re: Could not create log file error?
Следующее
От: Stefan Becker
Дата:
Сообщение: Re: count the number of bits set to 1 in a bit string field