TSQL 中竖线/竖线字符的含义是什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是按位或
http://msdn.microsoft.com/en-us/library/ms176122.aspx
That is a bitwise OR
http://msdn.microsoft.com/en-us/library/ms176122.aspx
这是按位或运算符。请参阅本文。实际上,
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 :)|在 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.