LOG10 (SQL Server Compact Edition)

Devuelve el logaritmo en base 10 de la expresión float determinada.

Sintaxis

LOG10 ( float_expression ) 

Argumentos

  • float_expression
    Expresión del tipo float o de tipos que se puedan convertir implícitamente en float.

Valor devuelto

float

Ejemplo

El ejemplo siguiente devuelve el logaritmo en base 10 de diversos valores float.

CREATE TABLE "Base-10 Logarithms" ("LOG10 2" float, "LOG10 20" float, "LOG10 200" float)
INSERT INTO Logarithm VALUES (LOG10(2), LOG10(20), LOG10(200))
SELECT * FROM "Base-10 Logarithms"

Vea también

Ayuda e información

Obtener ayuda sobre SQL Server Compact Edition