HomeSQL FunctionsNumeric FunctionsCEIL本页总览CEILRounds the number up. Syntax CEIL( <x> ) Aliases CEILING Examples SELECT CEILING(-1.23), CEIL(-1.23);┌────────────────────────────────────┐│ ceiling((- 1.23)) │ ceil((- 1.23)) │├───────────────────┼────────────────┤│ -1 │ -1 │└────────────────────────────────────┘