Browse 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 13 years ago
parent
commit
1a16273242
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app.rb

+ 2
- 2
app.rb View File

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


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


Loading…
Cancel
Save