BIN(N)
Returns a string representation of the binary value of the given longlong (that is, BIGINT
) number. This is equivalent to CONV(N,10,2)
. The argument should be positive. If it is a FLOAT
, it will be truncated. Returns NULL
if the argument is NULL
.
SELECT BIN(12); +---------+ | BIN(12) | +---------+ | 1100 | +---------+
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/bin/