Explorar el Código

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

tags/last-sinatra-version
Adrian Short hace 14 años
padre
commit
1a16273242
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      app.rb

+ 2
- 2
app.rb Ver fichero

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


Cargando…
Cancelar
Guardar