BITNOT
Returns the bitwise NOT of a numeric value.
Analyze Syntax
func.bitnot(<x>)
Analyze Examples
func.bitnot(0)
┌──────┐
│ '-1' │
└──────┘
SQL Syntax
BITNOT(<x>)
SQL Examples
SELECT BITNOT(0);
┌────┐
│ -1 │
└────┘
Returns the bitwise NOT of a numeric value.
func.bitnot(<x>)
func.bitnot(0)
┌──────┐
│ '-1' │
└──────┘
BITNOT(<x>)
SELECT BITNOT(0);
┌────┐
│ -1 │
└────┘