Loading lesson path
Concept visual
Start at both ends
Return a binary representation of 15:
SELECT BIN(15);The BIN() function returns a binary representation of a number, as a string value.
number )
Required. A number
From MySQL 4.0
Return a binary representation of 111:
SELECT BIN(111);Return a binary representation of 8:
SELECT BIN(8);❮ MySQL Functions