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

This commit is contained in:
Andreas
2021-05-22 08:47:24 +02:00
parent 4c1c5852ce
commit 164a395b76

View File

@@ -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);