Difference between revisions of "FLOOR()"

From Lianjapedia
Jump to: navigation, search
 
Line 23: Line 23:
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Numeric Data]]
 
 
[[Category:Numeric Data Functions]]
 
[[Category:Numeric Data Functions]]

Latest revision as of 08:59, 4 February 2013

Purpose

Function to return the largest integer that is less than or equal to a given number

Syntax

FLOOR(<expN>)

See Also

CEILING(), ISDIGIT(), SIGN()

Description

The FLOOR() function is used to return the largest integer that is less than or equal to <expN>.

Example

? floor(354.89)
       354
? floor(354.19)
       354
? floor(-354.89)
      -355