CEILING()

Overview

Returns the nearest integer value, rounding upwards.

USAGE

CEILING(number)

Argument Name

Description

number

The number to round

DETAILS

CEILING() is a mathematical function that returns the nearest integer that is either equal to or higher than the input value. This is known as a "ceiling function".

A NULL is returned if the argument is NULL.

The data size of the return value depends on the data size of the argument.

SYNONYMS

SCHEMA

PARAMETERS

SKYSQL

PRIVILEGES

EXAMPLES

CREATE TABLE ceiling_example (
  example FLOAT
);
INSERT INTO ceiling_example VALUES
  (1.1), (42.5), (99.9), (7.0), (-11.2);
SELECT example, CEILING(example)
 FROM ceiling_example;
+---------+------------------+
| example | CEILING(example) |
+---------+------------------+
|     1.1 |                2 |
|    42.5 |               43 |
|    99.9 |              100 |
|       7 |                7 |
|   -11.2 |              -11 |
+---------+------------------+

ERROR HANDLING

FEATURE INTERACTION

RESPONSES

DIAGNOSIS

ISO 9075:2016

CHANGE HISTORY

Release Series

History

23.09

  • Present starting in MariaDB Xpand 23.09.1.

6.1

  • Present starting in MariaDB Xpand 6.1.0.

6.0

  • Present starting in MariaDB Xpand 6.0.3.

5.3

  • Present starting in MariaDB Xpand 5.3.13.

Release Series

History

6.0

  • Present starting in MariaDB Xpand 6.0.3.

5.3

  • Present starting in MariaDB Xpand 5.3.13.

Release Series

History

6.1

  • Present starting in MariaDB Xpand 6.1.0.

EXTERNAL REFERENCES