FLOOR
Rounds the number down.
Analyze Syntax
func.floor( <x> )
Analyze Examples
func.floor(1.23)
┌──────────────────┐
│ func.floor(1.23) │
├──────────────────┤
│ 1 │
└──────────────────┘
SQL Syntax
FLOOR( <x> )
SQL Examples
SELECT FLOOR(1.23);
┌─────────────┐
│ floor(1.23) │
├─────────────┤
│ 1 │
└─────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)