Files
doris/docs/zh-CN/sql-reference/sql-functions/bitwise-functions/bitnot.md
2022-01-24 21:08:41 +08:00

1.2 KiB

title, language
title language
bitnot zh-CN

bitnot

description

Syntax

BITNOT(Integer-type value)

返回一个整数取反运算的结果.

整数范围:TINYINT、SMALLINT、INT、BIGINT、LARGEINT

example

mysql> select bitnot(7) ans;
+------+
| ans  |
+------+
|   -8 |
+------+

mysql> select bitxor(-127) ans;
+------+
| ans  |
+------+
|  126 |
+------+

keyword

BITNOT