SQL FunctionsNumeric FunctionsCEILOn this pageCEILRounds the number up. Syntax CEIL( <x> ) Aliases CEILING Examples SELECT CEILING(-1.23), CEIL(-1.23);┌────────────────────────────────────┐│ ceiling((- 1.23)) │ ceil((- 1.23)) │├───────────────────┼────────────────┤│ -1 │ -1 │└────────────────────────────────────┘