Skip to content

Latest commit

 

History

History
76 lines (56 loc) · 2.41 KB

File metadata and controls

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

FLOOR (Transact-SQL)

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

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

Topic link icon Transact-SQL Syntax Conventions

Syntax

FLOOR ( numeric_expression )  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Arguments

numeric_expression
Is an expression of the exact numeric or approximate numeric data type category, except for the bit data type.

Return Types

Returns the same type as numeric_expression.

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: [!INCLUDEssSDWfull] 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)