In this guide, we will explain how to use the MySQL CEIL function with syntax and examples.
Description
The MySQL CEIL function returns the smallest integer value that is greater than or equal to a number.
Syntax
The syntax for the CEIL function in MySQL is:
CEIL( number )
Parameters or Arguments
number
The value is used to find the smallest integer value.
Note
- The CEIL function is a synonym for the CEILING function.
- See also the FLOOR, ROUND, CEILING, and TRUNCATE functions.
Applies To
The CEIL function can be used in the following versions :
- MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0.6
Example
Let’s look at some CEIL function examples and explore how to use the CEIL function.
For example:
mysql> SELECT CEIL(32.65); Result: 33 mysql> SELECT CEIL(32.1); Result: 33 mysql> SELECT CEIL(32); Result: 32 mysql> SELECT CEIL(-32.65); Result: -32 mysql> SELECT CEIL(-32.1); Result: -32 mysql> SELECT CEIL(-32); Result: -32
Next Topic : Click Here
Pingback: MySQL: AVG Function | Adglob Infosystem Pvt Ltd