Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table (foos) which is a list of Foos, one row per type of Foo. A second table (items) is a list in which each row is the type of Foo and an amount (and other information). For example, Foo3, 45.2 and Foo2, 12.34.

I'd like to determine the total of the amounts for each type of Foo.

This is my existing code, but there must be a better (more standard or efficient) way:

cursor.execute('''select type from foos''')
foo_types = cursor.fetchall()
results = []
for ft in foo_types:
    cursor.execute('''select sum(amount) from items
        where foo_type =?''', ft)
    results.append((ft, cursor.fetchone()))

How should I code this?

share|improve this question
1  
SO's syntax highlighting tells me there's a problem with your code. – eumiro Nov 17 '11 at 12:21
I put an extra ''' at the end of the execute line. Fixed. – foosion Nov 17 '11 at 13:04

1 Answer

up vote 2 down vote accepted
SELECT foo_type, SUM(amount)
FROM items
GROUP BY foo_type

gives you within one query already each foo_type and the corresponding sum. You can build a dictionary from it and use it to expand data from the first query.

Or put everything into one query:

cursor.execute("SELECT foo_type, SUM(amount) "
               "FROM items, foos "
               "WHERE items.foo_type = foos.type "
               "GROUP BY foo_type")
results = list(cursor)

# results is a list of tuples: [(type1, sum1), (type2, sum2), ...]
share|improve this answer
items and foo both use the column name 'type'. When I run the second version, I get: sqlite3.OperationalError: ambiguous column name: type on the group by line. I tried group by items.type, but that didn't help. The first version worked perfectly – foosion Nov 17 '11 at 13:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.