Mega Code Archive

 
Categories / MSSQL / Transact SQL
 

LOG is the inverse of EXP, and this can be demonstrated by

1> -- LOG is the inverse of EXP, and this can be demonstrated by: 2> 3> SELECT LOG(EXP(2)) 4> 5> GO ------------------------                        2 (1 rows affected) 1>