From: | Dennis Gearon <gearond(at)cvc(dot)net> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | operators and bit field |
Date: | 2003-02-14 19:12:15 |
Message-ID: | FE51PJXRFB31TNHDB0PJIFTPWV31942Z.3e4d3f8f@cal-lab |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
I haven't seen what operators can be applied to bit masks.
In particular, I am looking to use binary AND:
I want to AND two bitmasks together and see:
A/ if the result has ANY bits set
B/ what bits are set in the results.
SELECT other_fields
FROM some_table
WHERE
( bitmask_8_columnA & bitmask_8_column B) = bitmask_8_patternONE
OR ( bitmask_8_columnA & bitmask_8_column B) = bitmask_8_patternTWO
;
I may try to use a single char for one of the bit masks I need,
is it possible to store all 256 values into a varchar(1) using
escaped input?
Is it possible to AND two varchars within a select and compare the result?
SELECT other_fields
FROM some_table
WHERE ( varchar_1_columnA & varchar_1_columnB ) = 'single_escaped_char_string';
From | Date | Subject | |
---|---|---|---|
Next Message | scott.marlowe | 2003-02-14 19:19:15 | Re: [GENERAL] [CYGWIN] What other parameters to consider when |
Previous Message | wsheldah | 2003-02-14 19:06:28 | Re: MS-Access |