bigint 类型,带有 &用法

发布于 2024-11-24 01:11:55 字数 190 浏览 1 评论 0原文

我第一次看到在 sql 存储过程中使用“&”符号。

declare  @b bigint
set @b=15
select @b&2

result is 2

有人可以解释一下结果是2吗?

仅供参考:它在 SQL Server 2005 上

I am seeing this first time using '&' symbol in sql stored procedures.

declare  @b bigint
set @b=15
select @b&2

result is 2

Can some one explain me how the result was 2??

FYI: its on SQL server 2005

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

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

发布评论

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

评论(2

风筝有风,海豚有海 2024-12-01 01:12:26

& 符号在两个整数值之间执行按位逻辑与运算。

您是否尝试添加 2,在这种情况下您可能需要使用:

declare @b bigint set @b=15 select @b + 2

The & symbol is performs a bitwise logical AND operation between two integer values.

Are you trying to add 2, in which case you may be looking to use:

declare @b bigint set @b=15 select @b + 2
云之铃。 2024-12-01 01:12:25

&按位与 运算符。

结果是 2,因为;

select 15     --15 as binary: 1111
       & 2    --2 as binary:  0010
                              ----
  --AND'ing the bits yields;  0010  <- decimal 2

& is the Bitwise And operator.

The result is 2 because;

select 15     --15 as binary: 1111
       & 2    --2 as binary:  0010
                              ----
  --AND'ing the bits yields;  0010  <- decimal 2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文