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