gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 11:34:36 27 4
gpt4 key购买 nike

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

例如我的表包含

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

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

例如

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

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

我希望你能明白我的意思,我想不出我想要的合适的术语是什么。

最佳答案

select bit_or(col1) from table group by col1;

引用(它可能不存在于您的版本中,因此请查看文档):

Aggregate functions - PostgreSQL documentation .

关于sql - 如何在 postgres 中对结果执行按位运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13183880/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com