TSQL 中竖线/竖线字符的含义是什么?

发布于 2024-10-17 02:56:40 字数 192 浏览 0 评论 0原文

Google-fu 在这一点上让我失望了。任何人都可以简要解释以下语句会做什么?:

UPDATE
    message WITH (ROWLOCK)
SET
    message = message | 2

我在触发器中找到了这个,并且我无法找到解释 | 的文档。角色在这样的声明中做了这样的事情。

Google-fu is failing me on this one. Can anyone briefly explain what the following statement would do?:

UPDATE
    message WITH (ROWLOCK)
SET
    message = message | 2

I found this in a trigger, and I am unable to find docs explaining what the | character does in a statement like this.

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

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

发布评论

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

评论(3

你げ笑在眉眼 2024-10-24 02:56:40

这是按位或运算符。请参阅本文。实际上,message 是一个位字段,通过将其与 2 进行按位或运算,您可以设置第二位。请参阅Wikipedia 的按位运算文章,了解位旋转的详细概述:)

It's the bitwise OR operator. See this article. Effectively, message is a bitfield, and by bitwise-ORing it with 2, you're setting the second bit. See Wikipedia's bitwise operation article for a good overview of bit-twiddling :)

愛上了 2024-10-24 02:56:40

|在 T-SQL 中是按位“或”:

http://msdn.microsoft.com/ en-us/library/ms186714.aspx

因此,如果消息包含 0,则它将包含 2,如果包含 1,则它将包含 3,依此类推。

| is a bitwise OR in T-SQL:

http://msdn.microsoft.com/en-us/library/ms186714.aspx

So if message contained 0, it would contain 2, if it contained 1, it would contain 3, etc.

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