Re: binary operators

Ken Corey <ken@kencorey.com>

From: Ken Corey <ken@kencorey.com>
To: Frederic Metoz <metoz@lmes.ibs.fr>
Cc: pgsql-sql@postgresql.org
Date: 2001-01-31T06:28:08Z
Lists: pgsql-sql
Frederic Metoz wrote:
> I am looking for the binary AND and OR ... SHIFT as well.
> Do they exist for postgresql ?

Depending on what you're doing...you might get away with using
mathematical operators to accomplish the above...

A right SHIFT would be dividing by 2.  A left shift would be multiplying
by 2.  

I don't know off the top of my head about AND and OR.  Doesn't the
manual cover this?

-Ken