FLOOR
Returns the largest integer less than or equal to a number.
Analyze Syntax
func.floor(<x>)
Analyze Examples
func.floor(3.7)
┌───┐
│ 3 │
└───┘
SQL Syntax
FLOOR(<x>)
SQL Examples
SELECT FLOOR(3.7);
┌───┐
│ 3 │
└───┘
Returns the largest integer less than or equal to a number.
func.floor(<x>)
func.floor(3.7)
┌───┐
│ 3 │
└───┘
FLOOR(<x>)
SELECT FLOOR(3.7);
┌───┐
│ 3 │
└───┘