CEIL
Returns the smallest integer greater than or equal to a number.
Analyze Syntax
func.ceil(<x>)
Analyze Examples
func.ceil(3.2)
┌───┐
│ 4 │
└───┘
SQL Syntax
CEIL(<x>)
SQL Examples
SELECT CEIL(3.2);
┌───┐
│ 4 │
└───┘
Returns the smallest integer greater than or equal to a number.
func.ceil(<x>)
func.ceil(3.2)
┌───┐
│ 4 │
└───┘
CEIL(<x>)
SELECT CEIL(3.2);
┌───┐
│ 4 │
└───┘