我有一张有两个字段(纬度和经度)的表格。 我还有一个脚本,可以让用户获得当前的纬度和经度。
我希望从用户位置获取表中所有< = 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()