Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Welcher MySQL-Datentyp soll für Latitude/Longitude mit 8 Dezimalstellen verwendet werden?

MySQL unterstützt Räumliche Datentypen und Point ist ein Einzelwerttyp, der verwendet werden kann. Beispiel:

CREATE TABLE `buildings` (
  `coordinate` POINT NOT NULL,
  /* Even from v5.7.5 you can define an index for it */
  SPATIAL INDEX `SPATIAL` (`coordinate`)
) ENGINE=InnoDB;

/* then for insertion you can */
INSERT INTO `buildings` 
(`coordinate`) 
VALUES
(POINT(40.71727401 -74.00898606));