CEIL
Learn how to use the CEIL numeric function in PlaidCloud Lakehouse. Rounds the number up. Includes detailed syntax, examples, and usage reference.
Rounds the number up.
Analyze Syntax
func.ceil( <x> )
Analyze Examples
func.ceil((- 1.23))
┌─────────────────────┐
│ func.ceil((- 1.23)) │
├─────────────────────┤
│ -1 │
└─────────────────────┘
SQL Syntax
CEIL( <x> )
Aliases
SQL Examples
SELECT CEILING(-1.23), CEIL(-1.23);
┌────────────────────────────────────┐
│ ceiling((- 1.23)) │ ceil((- 1.23)) │
├───────────────────┼────────────────┤
│ -1 │ -1 │
└────────────────────────────────────┘