Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why doesn't this sql query return any results comparing floating point numbers?

Tags:

mysql

double

I have this in a mysql table:

enter image description here

id and bolag_id are int. lat and lngitude are double.

If I use the the lngitude column, no results are returned:

lngitude Query: SELECT * FROM location_forslag WHERElngitude= 13.8461208

However, if I use the lat column, it does return results:

lat Query: SELECT * FROM location_forslag WHERElat= 58.3902782

What is the problem with the lngitude column?

like image 221
Lille_skutt Avatar asked Jan 12 '12 17:01

Lille_skutt


2 Answers

It is not generally a good idea to compare floating point numbers with = equals operator.

  • Is it correct to compare two rounded floating point numbers using the == operator?

  • Dealing with accuracy problems in floating-point numbers

For your application, you need to consider how close you want the answer to be.

1 degree is about 112km, and 0.00001 degrees is about 1.1 metres (at the equator). Do you really want your application to say "not equal" if two points are different by 0.00000001 degrees = 1mm?

set @EPSLION = 0.00001  /* 1.1 metres at equator */

SELECT * FROM location_forslag 
WHERE `lngitude` >= 13.8461208 -@EPSILON 
AND `lngitude` <= 13.8461208 + @EPSILON

This will return points where lngitude is within @epsilon degrees of the desired value. You should choose a value for epsilon which is appropriate to your application.

like image 115
Ben Avatar answered Oct 20 '22 15:10

Ben


Floating points are irritating....

 WHERE ABS(lngitude - 13.8461208) < 0.00000005
like image 37
Wrikken Avatar answered Oct 20 '22 16:10

Wrikken