Google News
logo
SQL Server - Interview Questions
What is the use of FLOOR function in SQL Server?
FLOOR function is used to round up a non-integer value to the previous least integer. Floor expression returns a unique value after rounding down the expression.
 
Syntax :
FLOOR (expression)  
For example :
 
FLOOR (7.3)
Advertisement