Re: Bit string manipulation in Postgresql

From: "Josh Goldberg" <josh(at)4dmatrix(dot)com>
To: "Ericson Smith" <ericson(at)did-it(dot)com>, <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Bit string manipulation in Postgresql
Date: 2002-10-30 22:00:12
Message-ID: 008601c2805f$bacf9550$6e02a8c0@4dmatrix.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

http://www.postgresql.org/idocs/index.php?functions-math.html

is this what you're after?

SELECT 1 WHERE B'1010' & B'0110' > B'0001';
returns 1
SELECT 1 WHERE B'1010' & B'0100' > B'0001';
returns null

----- Original Message -----
From: "Ericson Smith" <ericson(at)did-it(dot)com>
To: <pgsql-admin(at)postgresql(dot)org>
Sent: Tuesday, October 29, 2002 5:01 PM
Subject: [ADMIN] Bit string manipulation in Postgresql

> Hi all,
>
> I'm trying to code a problem where a set of options can be expressed in
> a data column like "10111011", a bit string.
>
> Each position is atomic and represents a certain setting within the set,
> thus: "00100000" would return TRUE if OR'd with "10111011", since the
> 3'rd position matches in both sets.
>
> While I could manually retrieve N records and iterate through them in
> whatever programming language (or possibly a plpgsql function), is there
> a way I could natively do this in a WHERE clause in my query?
>
> Looking through the idocs, I could not immediately find a way around
> this issue. Any pointers to documentation (or perhaps another way to
> implement this issue) would be very helpful.
>
> Regards
> Ericson Smith
> eric(at)did-it(dot)com
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Robert Treat 2002-10-31 00:21:58 Re: [ADMIN] Fwd: [BUGS] Fwd: FATAL 1: Database dialup does not exist in pg_database
Previous Message John Sequeira 2002-10-30 21:27:33 HA for high insert volume