Returns the natural logarithm of a number.
LOG( numeric-expression )
numeric-expression The number.
This function converts its argument to DOUBLE, performs the computation in double-precision floating point, and returns a DOUBLE as the result. If the parameter is NULL, the result is NULL.
The argument is an expression that returns the value of any built-in numeric data type.
SQL/2003 Vendor extension.
The following statement returns the natural logarithm of 50.
SELECT LOG( 50 ); |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |