only group by country on dxcc list

这个提交包含在:
Peter Goodhall 2019-12-03 19:04:44 +00:00
父节点 cd42aef843
当前提交 c3da1f4418

查看文件

@ -103,7 +103,7 @@ class DXCC extends CI_Model {
"select COL_COUNTRY, COL_MODE, COL_PROP_MODE as COL_PROP_MODE, count(COL_COUNTRY) as cnt
from ".$this->config->item('table_name')."
where station_id = ".$station_id." AND COL_PROP_MODE = \"SAT\"
group by COL_COUNTRY, COL_PROP_MODE"
group by COL_COUNTRY"
);
foreach($satellite_data->result() as $row){