Trino Functions
Bitwise Functions
Count the number of bits set in x (treated as bits-bit signed integer) in 2โs complement representation. Supported Signatures
Returns the bitwise AND of x and y in 2โs complement representation. Supported Signatures
Returns the left shifted value of value. Supported Signatures
Returns the bitwise NOT of x in 2โs complement representation (NOT x = -x - 1). Supported Signatures
Returns the bitwise OR of x and y in 2โs complement representation. Supported Signatures
Returns the logical right shifted value of value. Supported Signatures
Returns the arithmetic right shifted value of value. Supported Signatures
Returns the bitwise XOR of x and y in 2โs complement representation. Supported Signatures
โI