Skip to content

Latest commit

 

History

History
85 lines (64 loc) · 2.58 KB

floor-transact-sql.md

File metadata and controls

85 lines (64 loc) · 2.58 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs monikerRange
FLOOR (Transact-SQL)
FLOOR (Transact-SQL)
markingmyname
maghan
03/03/2017
sql
t-sql
reference
FLOOR_TSQL
FLOOR
integers [SQL Server]
largest integers
FLOOR function [Transact-SQL]
TSQL
>= aps-pdw-2016 || = azure-sqldw-latest || >= sql-server-2016 || >= sql-server-linux-2017 || = azuresqldb-mi-current||=fabric

FLOOR (Transact-SQL)

[!INCLUDE sql-asdb-asdbmi-asa-pdw-fabricse-fabricdw]

Returns the largest integer less than or equal to the specified numeric expression.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

FLOOR ( numeric_expression )  

Arguments

numeric_expression
Is an expression of the exact numeric or approximate numeric data type category.

Return Types

The return type depends on the input type of numeric_expression:

Input type Return type
float, real float
decimal(p, s) decimal(38, s)
int, smallint, tinyint int
bigint bigint
money, smallmoney money
bit float

If the result does not fit in the return type, an arithmetic overflow error occurs.

Examples

The following example shows positive numeric, negative numeric, and currency values with the FLOOR function.

SELECT FLOOR(123.45), FLOOR(-123.45), FLOOR($123.45);  

The result is the integer part of the calculated value in the same data type as numeric_expression.

---------      ---------     -----------  
123            -124          123.0000     

Examples: [!INCLUDEssazuresynapse-md] and [!INCLUDEssPDW]

The following example shows positive numeric, negative numeric, and values with the FLOOR function.

SELECT FLOOR(123.45), FLOOR(-123.45), FLOOR($123.45);  

The result is the integer part of the calculated value in the same data type as numeric_expression.

-----   ---------    -----------  
 
123     -124         123

See Also

Mathematical Functions (Transact-SQL)