SQL Server 按位或分组?

发布于 2024-10-18 03:00:55 字数 610 浏览 2 评论 0原文

可能的重复:
在子查询中聚合按位或
将列更新为不同的聚合值

假设我有一个表以下记录。

Role | AuthorizationNum

1      11
2      12
1      16
2      11

我想要做的是按角色分组,或(位或使用 |)AuthorizationNum。所以我的选择应该是2条记录。

Role | AuthorizationNum

1      27
2      15

因为...

11 | 16 = 27

11 | 16 = 27 11 12 = 15

Possible Duplicates:
Aggregate bitwise-OR in a subquery
Update column to be different aggregate values

Let's say I have a table with the following records.

Role | AuthorizationNum

1      11
2      12
1      16
2      11

What I want to do is group by Role, the OR (BIT OR using |) AuthorizationNum. So my select should be 2 records.

Role | AuthorizationNum

1      27
2      15

Because...

11 | 16 = 27

11 | 12 = 15

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行雁书 2024-10-25 03:00:55

默认情况下 mysql 支持此功能,但 sql server 不支持。
但是您可以使用以下方法绕过它:将列更新为不同的聚合值

By default mysql supports this but not sql server.
But you can get around it using this: Update column to be different aggregate values

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文