Scalar. Returns the logarithm of a given value to the base 10.
Syntax
LOG10(
value
)
Parameter
value
|
An expression that evaluates to a value greater than or equal to 0.
|
Data Types
Return
|
value
|
Float
|
Float
|
Example
INSERT INTO OutStream
SELECT LOG10(InStream.FloatColumn)
FROM InStream;