CEILING

Description

A mathematical function that returns the smallest greater integer greater/equal to the number sent as a parameter (CEILING in Transact-SQL).

Sample Source Pattern

Syntax

CEILING( expression )

Examples

Code:

SELECT CEILING(642.20);

Result:

CEILING(642.20)|
---------------+
643            |

Last updated