Parcourir la source

Postgres requires all selected columns to be used in aggregate functions or specified in the GROUP BY clause

tags/last-sinatra-version
Adrian Short il y a 13 ans
Parent
révision
1a16273242
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      app.rb

+ 2
- 2
app.rb Voir le fichier

@@ -106,7 +106,7 @@ get '/bodies/:body/elections/:date' do

WHERE c.election_id = #{@election.id}

GROUP BY c.party_id
GROUP BY c.party_id, p.colour, p.name

ORDER BY seatz DESC, votez DESC
")
@@ -124,7 +124,7 @@ get '/bodies/:body/elections/:date' do
c.district_id = d.id
AND c.election_id = #{@election.id}

GROUP BY c.district_id
GROUP BY c.district_id, d.name, d.slug

ORDER BY d.name
")


Chargement…
Annuler
Enregistrer