I want to retrieve a data based on certain condition in database :
SELECT * FROM `chatRoom` WHERE 5.27680128733988 + 100.488135965769 = 105.764937253109
This actually produced 0 result when there we know that the value of the addition is 105.764937253109
To prove that the addition is equals to 105.764937253109
I actually update one of the row from the table to get the correct value :
UPDATE `chatRoom` SET `latitude`= 5.27680128733988 + 100.488135965769 WHERE Room_ID = 2
The updated column shows the result of the addition is 105.764937253109
but why when I try to select the results as in the first database query, it shows 0 data found?
Thank you