MySQL Forums
Forum List  »  Newbie

Math function logarithm
Posted by: Sascha Bieler
Date: March 15, 2011 10:06AM

Hi,

can someone explain this?

mysql> select LN(743.7585697483/743.5888244369);
+-----------------------------------+
| LN(743.7585697483/743.5888244369) |
+-----------------------------------+
| 0.00022825240801256 |
+-----------------------------------+




While putting the same figures in variables leads to a different result...

mysql> select @test1;
+--------------------------+
| @test1 |
+--------------------------+
| 743.75856974830000000000 |
+--------------------------+


mysql> select @test2;
+--------------------------+
| @test2 |
+--------------------------+
| 743.58882443690000000000 |
+--------------------------+


mysql> select LN(@test1/@test2);
+----------------------+
| LN(@test1/@test2) |
+----------------------+
| 0.000228252408012338 |
+----------------------+




Best regards and many thanks

Sascha



Edited 1 time(s). Last edit at 03/15/2011 10:06AM by Sascha Bieler.

Options: ReplyQuote


Subject
Written By
Posted
Math function logarithm
March 15, 2011 10:06AM
March 15, 2011 12:03PM
March 17, 2011 07:59PM
March 18, 2011 02:59AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.