I have this in the mysql table:

id and bolag_id are int . lat and lngitude are double .
If I use the lngitude column, the results are not returned:
lngitude Request: SELECT * FROM location_forslag WHERE lngitude = 13.8461208
However, if I use the lat column, it returns the results:
lat Query: SELECT * FROM location_forslag WHERE lat = 58.3902782
What is the problem with lngitude column?
double mysql
Lille_skutt
source share