How to use MySQL's geometry type to handle longitude and latitude distance problems

How to use MySQL's geometry type to handle longitude and latitude distance problems

Create a table

CREATE TABLE `map` (
 `id` int(11) NOT NULL,
 `address` varchar(255) NOT NULL DEFAULT '',
 `location` geometry NOT NULL,
 PRIMARY KEY (`id`),
 SPATIAL KEY `idx_location` (`location`)
)

insert

INSERT INTO map (id, address, location) VALUES (1, 'somewhere', ST_GeomFromText('POINT(121.366961 31.190049)'));

Note that you must use the ST_GeomFromText function, and POINT() contains: longitude + space + latitude

Query

1. Check the latitude and longitude

SELECT address, ST_AsText(location) AS location FROM map;

2. Calculate the distance between two points

SELECT ST_Distance_Sphere(POINT(121.590347, 31.388094),location) AS distant FROM map;

The calculated result is in meters.

Note that the latitude and longitude in POINT() are now separated by commas.

3. Search for locations within 1000m and sort them from far to near

Copy the code as follows:
SELECT id, address, ST_Distance_Sphere(POINT(121.590347, 31.388094),location) AS distant FROM map WHERE ST_Distance_Sphere(POINT(121.590347, 31.388094),location) < 1000 ORDER BY distant;

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Mybatis learning road mysql batch add data method
  • Detailed explanation of how to implement secondary cache with MySQL and Redis
  • In-depth explanation of MySQL common index and unique index
  • How to view mysql binlog (binary log)
  • Docker creates MySQL explanation
  • PHP date() format MySQL insert datetime method
  • How to solve SQL injection problem with pymysql
  • Steps to export the fields and related attributes of MySQL tables
  • Solution to the problem of MySQL thread in Opening tables
  • MySQL limit performance analysis and optimization

<<:  Solve the cross-domain problem of get and post requests of vue $http

>>:  Detailed explanation of how Tomcat implements asynchronous Servlet

Recommend

HTML code text box limit input text box becomes gray limit text box input

Method 1: Set the readonly attribute to true. INPU...

How to configure MySQL on Ubuntu 16.04 server and enable remote connection

background I am learning nodejs recently, and I r...

Use of Vue3 table component

Table of contents 1. Ant Design Vue 1. Official w...

Remote development with VSCode and SSH

0. Why do we need remote development? When develo...

How to open ports to the outside world in Alibaba Cloud Centos7.X

In a word: if you buy a cloud server from any maj...

A pitfall and solution of using fileReader

Table of contents A pitfall about fileReader File...

CSS3 text animation effects

Effect html <div class="sp-container"...

Solve the problem of using linuxdeployqt to package Qt programs in Ubuntu

I wrote some Qt interface programs, but found it ...

MyBatis dynamic SQL comprehensive explanation

Table of contents Preface Dynamic SQL 1. Take a l...

Summary of special processing statements of MySQL SQL statements (must read)

1. Update the entire table. If the value of a col...

How to encapsulate WangEditor rich text component in Angular

The rich text component is a very commonly used c...

SASS Style Programming Guide for CSS

As more and more developers use SASS, we need to ...

MySQL series of experience summary and analysis tutorials on NUll values

Table of contents 1. Test Data 2. The inconvenien...

mysql 8.0.15 winx64 decompression version graphic installation tutorial

Every time after installing the system, I have to...

Practical record of Vue3 combined with TypeScript project development

Table of contents Overview 1. Compositon API 1. W...