Last updated 1 month ago
SQL Server
Azure Synapse Analytics
Returns the largest integer less than or equal to the specified numeric expression. ().
FLOOR ( numeric_expression )
FLOOR( <input_expr> [, <scale_expr> ] )
Code:
SELECT FLOOR (124.87) AS FLOOR;
Result:
FLOOR| -----+ 124|
No issues were found.
No related EWIs.