Detailed explanation of formatting numbers in MySQL

Detailed explanation of formatting numbers in MySQL

Recently, due to work needs, I need to format numbers in MySQL, but I found that there is little information on the Internet. I simply summarize it myself to help friends in need. Let's take a look at the detailed introduction together:

1. format function:

Format floating point number format(number, length);

Description: Formats the number X to a format like '#,###,###.##', rounded to D decimal places, and returns the result as a string. If D is 0, the result has no decimal point or fractional part. D should be a constant value.

Sample Code

mysql> SELECT FORMAT(12332.123456, 4);
 -> '12,332.1235' 
mysql> SELECT FORMAT(12332.1,4);
 -> '12,332.1000' 
mysql> SELECT FORMAT(12332.2,0);
 -> '12,332'

2. rpad and lpad give a number of digits, but if it is insufficient, add custom characters

RPAD:

Returns the string str, right-padded with the string padstr to a length of len characters. If
str is longer than len, the return value is shortened to len characters.

Sample Code

mysql> SELECT RPAD('hi',5,'?'); 
  -> 'hi???'
 mysql> SELECT RPAD('hi',1,'?'); 
  -> 'h'
mysql>SELET RPAD(12, 5 ,0);
  ->12000

This function is multi-byte safe.

LPAD:

Returns the string str, left-padded with the string padstr to a length of lencharacters. If str is longer than len, the return value is shortened to lencharacters.

Sample Code

mysql> SELECT LPAD('hi',4,'??');
 -> '??hi' 
mysql> SELECT LPAD('hi',1,'??');
 -> 'h' 

mysql>SELECT LPAD(12, 5, 0)
  ->'00012'

Reference: http://www.cnblogs.com/fenglie/articles/4409208.html

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • MySQL format decimals retain two decimal places (decimal format)
  • Detailed explanation of date formatting in MySQL
  • Detailed explanation of mysql to get the current date and format
  • A brief introduction to MySQL database formatting
  • Detailed explanation of mysql get current date function and time formatting parameters

<<:  Application of Hadoop counters and data cleaning

>>:  Detailed explanation of the use and differences of various lock mechanisms in Linux

Recommend

WeChat applet to obtain mobile phone number step record

Preface Recently, I encountered such a problem wh...

vitrualBox+ubuntu16.04 install python3.6 latest tutorial and detailed steps

Because I need to use Ubuntu+Python 3.6 version t...

CSS3 timeline animation

Achieve results html <h2>CSS3 Timeline</...

How to use nginx as a load balancer for mysql

Note: The nginx version must be 1.9 or above. Whe...

Detailed explanation of for loop and double for loop in JavaScript

for loop The for loop loops through the elements ...

getdata table table data join mysql method

public function json_product_list($where, $order)...

Detailed explanation of CocosCreator Huarongdao digital puzzle

Table of contents Preface text 1. Panel 2. Huaron...

Vue defines private filters and basic usage

The methods and concepts of private filters and g...

Solve the problem of garbled Chinese characters in Mysql5.7

When using MySQL 5.7, you will find that garbled ...

Implementation methods of common CSS3 animations

1. What is CSS Animations is a proposed module fo...

Vue implements the magnifying glass effect of tab switching

This article example shares the specific code of ...