《Mysql應(yīng)用mysql 搜尋附近N公里內(nèi)數(shù)據(jù)的簡單實例》要點:
本文介紹了Mysql應(yīng)用mysql 搜尋附近N公里內(nèi)數(shù)據(jù)的簡單實例,希望對您有用。如果有疑問,可以聯(lián)系我們。
根據(jù)圓周率和地球半徑系數(shù)以及搜尋點的經(jīng)緯度,搜尋數(shù)據(jù)表中與搜尋點之間的距離為N公里內(nèi)的數(shù)據(jù).MYSQL應(yīng)用
1、創(chuàng)建測試表MYSQL應(yīng)用
CREATE TABLE `location` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `longitude` decimal(13,10) NOT NULL, `latitude` decimal(13,10) NOT NULL, PRIMARY KEY (`id`), KEY `long_lat_index` (`longitude`,`latitude`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2、插入測試數(shù)據(jù)MYSQL應(yīng)用
insert into location(name,longitude,latitude) values ('廣州東站',113.332264,23.156206), ('林和西',113.330611,23.147234), ('天平架',113.328095,23.165376); mysql> select * from `location`; +----+--------------+----------------+---------------+ | id | name | longitude | latitude | +----+--------------+----------------+---------------+ | 1 | 廣州東站 | 113.3322640000 | 23.1562060000 | | 2 | 林和西 | 113.3306110000 | 23.1472340000 | | 3 | 天平架 | 113.3280950000 | 23.1653760000 | +----+--------------+----------------+---------------+
3、搜尋1公里內(nèi)的數(shù)據(jù)MYSQL應(yīng)用
搜尋點坐標(biāo):時代廣場 113.323568, 23.146436MYSQL應(yīng)用
6370.996公里為地球的半徑MYSQL應(yīng)用
計算球面兩點坐標(biāo)距離公式MYSQL應(yīng)用
C = sin(MLatA)sin(MLatB)cos(MLonA-MLonB) + cos(MLatA)cos(MLatB) Distance = RArccos(C)*Pi180
根據(jù)計算公式得到查詢語句如下:MYSQL應(yīng)用
select * from `location` where ( acos( sin(([#latitude#]*3.1415)/180) * sin((latitude*3.1415)/180) + cos(([#latitude#]*3.1415)/180) * cos((latitude*3.1415)/180) * cos(([#longitude#]*3.1415)/180 - (longitude*3.1415)/180) )*6370.996 )<=1;
執(zhí)行查詢:MYSQL應(yīng)用
mysql> select * from `location` where ( -> acos( -> sin((23.146436*3.1415)/180) * sin((latitude*3.1415)/180) + -> cos((23.146436*3.1415)/180) * cos((latitude*3.1415)/180) * cos((113.323568*3.1415)/180 - (longitude*3.1415)/180) -> )*6370.996 -> )<=1; +----+-----------+----------------+---------------+ | id | name | longitude | latitude | +----+-----------+----------------+---------------+ | 2 | 林和西 | 113.3306110000 | 23.1472340000 | +----+-----------+----------------+---------------+
以上這篇mysql 搜尋附近N公里內(nèi)數(shù)據(jù)的簡單實例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持維易PHP.MYSQL應(yīng)用
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.snjht.com/jiaocheng/1566.html