BIN
Syntax
BIN(N)
Description
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
.
Examples
SELECT BIN(12); +---------+ | BIN(12) | +---------+ | 1100 | +---------+
See Also
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.