Browse Source

Fixed SQL error

tags/last-sinatra-version
Adrian Short 14 years ago
parent
commit
d650b70ba3
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      app.rb

+ 6
- 1
app.rb View File

@@ -34,10 +34,15 @@ get '/' do
WHERE p.id = c.party_id WHERE p.id = c.party_id
GROUP BY p.id
GROUP BY p.name
ORDER BY votes desc ORDER BY votes desc
;") ;")

select p.name, count(c.*) AS seats
FROM parties p, councilcandidates c
GROUP BY p.id

@total_votes = Councilcandidate.sum(:votes_2010) @total_votes = Councilcandidate.sum(:votes_2010)


Loading…
Cancel
Save