Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of converting the binary of MySQL numbers

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces the relevant knowledge of "the conversion method of MySQL digits". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Binary conversion of MySQL numbers (use of conv)

CONV (NParth from Basebook Basebook totalbase)

Convert numbers between different cardinals. Converts the number N from from_base to to_base and returns as a string. If any parameter is NULL, the return value is also NULL. The parameter N is interpreted as an integer, but it can also be specified as an integer or a string. The minimum base is 2 and the maximum base is 36. If to_base is a negative value, N is treated as a signed number. Otherwise, N is considered unsigned. CONV works at 64-bit precision.

> select conv (100ju 10jue 2)

+-+

| | conv (100pc10pr 2) | |

+-+

| | 1100100 |

+-+

1 row in set (0.00 sec)

Mysql > select conv (100je 10je 16)

+-+

| | conv (100, 10, 16) | |

+-+

| | 64 |

+-+

1 row in set (0.00 sec)

Mysql >

This is the end of the content of "binary conversion method of MySQL numbers". Thank you for your reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report