Returns the largest integer not greater than a number.
FLOOR( numeric-expression )
numeric-expression The value, usually a FLOAT.
DOUBLE
This function converts its arguments to DOUBLE, and performs the computation in double-precision floating point.
SQL/2003 Vendor extension.
The following statements returns a Floor value of 123
SELECT FLOOR (123); |
The following statements returns a Floor value of 123
SELECT FLOOR (123.45); |
The following statements returns a Floor value of -124
SELECT FLOOR (-123.45); |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |