The implementation of MySQL rounding

Source: Internet
Author: User

The article mainly describes the actual application of MySQL rounding, as well as in its actual operation worthy of our attention and the actual application of the code description, the following is the main content of the article described in detail, hope that you will have a deeper understanding after browsing.

FLOOR (X)

1. Returns the maximum integer value that is not greater than X.

Mysql> Select FLOOR (1.23);

-> 1

Mysql> Select FLOOR (-1.23);

->-2

Note that the return value is transformed into a bigint!

CEILING (X)

2. Returns the smallest integer value that is not less than X.

Mysql> Select CEILING (1.23);

-> 2

Mysql> Select CEILING (-1.23);

->-1

Note that the return value is transformed into a bigint!

ROUND (X)

3. Returns an integer for the MySQL rounding of the parameter x.

Mysql> Select ROUND (-1.23);

->-1

Mysql> Select ROUND (-1.58);

->-2

Mysql> Select ROUND (1.58);

-> 2

Note that the return value is transformed into a bigint!

ROUND (X,D)

4. Returns the rounding of the parameter x with a number D as a decimal. If D is 0, the result will not have a decimal point or fractional part.

Mysql> Select ROUND (1.298, 1);

-> 1.3

Mysql> Select ROUND (1.298, 0);

-> 1

Note that the return value is transformed into a bigint!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.