Floor
Summary
The Floor
function returns the largest integer less than or equal to the numeric expression.
Syntax
Floor((<numeric_exp>) |
Return Type
The type corresponding to the numeric input.
Details
Examples
eval Floor(- 1.2 ); - 2 select Floor( 10.999 ) from Empty(rows= 1 ); 10 |