如何在postgres中对结果执行按位运算符?

时间:2012-11-01 19:08:20

标签: sql postgresql

如果我有几行,并且我想对结果执行按位OR,我该如何在Postgres 9.x中执行此操作?

e.g。 我的表包含

Name col1 col2
--------------
John    1    2
Walter  1    1
Ron     1    2

我知道我想执行select语句,以便从列中获取所有(或子集)值的OR。

E.g。

select [magical statement OR col1] from table
would give me
1

select [magical statement OR col2] from table
would give me
3

我希望你能理解我的意思,我无法弄清楚我想要的正确术语是什么。

1 个答案:

答案 0 :(得分:4)

select bit_or(col1) from table group by col1;

参考(可能不会出现在您的版本中,因此请查看文档):

Aggregate functions - PostgreSQL documentation