我有一个表有两个字段(纬度和经度)。我还有一个脚本,可以获取用户当前的纬度和经度。
我想从表中获取距离用户位置<=50km的所有行。计算距离不是问题。我的问题是如何使用mysql限制搜索结果中不需要的行?
$currentLatitude = 10.999;
$currentLongitude = 23.354;
mysql数据库
$this->db->select('latitude, longitude');
$this->db->from('table');
//This is where I have a problem
$this->db->where('distance <=', 50km);
$result = $this->db->get()
暂无答案!
目前还没有任何答案,快来回答吧!