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

前端 未结 21 2888
梦如初夏
梦如初夏 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条回答
  •  闹比i
    闹比i (楼主)
    2020-11-22 10:00

    The ideal datatype for storing Lat Long values is decimal(9,6)

    This is at approximately 10cm precision, whilst only using 5 bytes of storage.

    e.g. CAST(123.456789 as decimal(9,6))

提交回复
热议问题