Home > Database > Mysql Tutorial > body text

In MySQL, how do we get the string representation of the binary value of a number?

WBOY
Release: 2023-09-08 19:21:37
forward
1429 people have browsed it

In MySQL, how do we get the string representation of the binary value of a number?

In MySQL, the BIN() function is used to obtain the string representation corresponding to the binary value of a number. It treats numbers as DECIMAL numbers.

grammar

BIN(value)
Copy after login

The value here is a BIGINT number, which is the binary value to be retrieved.

Example

mysql> Select BIN(15);
+---------+
| BIN(15) |
+---------+
| 1111    |
+---------+
1 row in set (0.00 sec)
Copy after login

The above is the detailed content of In MySQL, how do we get the string representation of the binary value of a number?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template