BIN
Returns the binary string representation of an integer.
Analyze Syntax
func.bin(<x>)
Analyze Examples
func.bin(10)
┌────────┐
│ '1010' │
└────────┘
SQL Syntax
BIN(<x>)
SQL Examples
SELECT BIN(10);
┌──────┐
│ 1010 │
└──────┘
Returns the binary string representation of an integer.
func.bin(<x>)
func.bin(10)
┌────────┐
│ '1010' │
└────────┘
BIN(<x>)
SELECT BIN(10);
┌──────┐
│ 1010 │
└──────┘