SQL Server/T-SQL Tutorial/Math Functions/LOG
Версия от 13:46, 26 мая 2010; (обсуждение)
LOG Takes one positive valued parameter, and returns the natural logarithm of this parameter as a float value.
4> SELECT LOG(5.67)
5> SELECT LOG(EXP(2))
6> GO
------------------------
1.7351891177396608
(1 rows affected)
------------------------
2
(1 rows affected)