Skip to content

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