What is the ideal data type to use when storing latitude / longitude in a MySQL database?

前端 未结 21 2384
梦如初夏
梦如初夏 2020-11-22 09:40

Bearing in mind that I\'ll be performing calculations on lat / long pairs, what datatype is best suited for use with a MySQL database?

21条回答
  •  粉色の甜心
    2020-11-22 09:58

    MySQL uses double for all floats ... So use type double. Using float will lead to unpredictable rounded values in most situations

提交回复
热议问题