[Award US counties] A small SQL fix if when sql_mode=only_full_group_by is on. Fixed #1037

这个提交包含在:
Andreas 2021-05-22 08:47:24 +02:00
父节点 4c1c5852ce
当前提交 164a395b76

查看文件

@ -47,7 +47,7 @@ class Counties extends CI_Model
" and COL_DXCC in ('291', '6', '110')
and coalesce(COL_CNTY, '') <> ''
and COL_BAND != 'SAT'
group by thcv.COL_STATE
group by thcv.COL_STATE, countycountconfirmed
order by thcv.COL_STATE";
$query = $this->db->query($sql);