CEIL

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 └────────────────────────────────────┘