Function floor() rounds down a given number to its floor, namely returns the largest integer that is no greater than the number.
Arguments:
Returns:
Example: Round down each row of an alias
UQLuncollect [1, -2.5, 3.7] as a return floor(a)
Result1 -3 3