bin
function
Applies to: Databricks SQL Databricks Runtime
Returns the binary representation of expr
.
Examples
> SELECT bin(13);
1101
> SELECT bin(-13);
1111111111111111111111111111111111111111111111111111111111110011
> SELECT bin(13.3);
1101
Related functions