SQL 手册SQL 函数Bitwise 函数BITNOT本页总览BITNOTbitnot 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 |+------+ keywords BITNOT