描述:
整数按位取反。
语法:
not(x)
备注:
整数按位取反,支持没有小数部分的decimal。
参数:
x
需要计算按位取反的数值表达式。
返回值:
整数
示例:
not(6)
-7
not(decimal(6))
-7,结果为decimal类型。