Course
Simulator
More
Premium
Log in
SQL Function Reference
Functions
LOG
LOG
Returns the logarithm of a number
MySQL
LOG
(
base
,
num
)
base
Foundation of the algorithm
num
The number from which the algorithm is taken
Examples
MySQL
SELECT
LOG
(
10
,
100
)
;