Am Samstag, 10. Januar 2009 schrieb silvio grosso:

> The query is:
> select avg(age), avg(durata), sum(età) from acoda, main, dipendenti

This is "cross join" over all three tables. The result is a "monster table", 
consisting of every possible combination of the records of those three 
tables. And in this "monster table" the sum most probably is correct.

Please read your SQL-documention about different types of joins and what they 
are good for.

For debugging purposes you can have a look at 

  select *  from acoda, main, dipendenti

to see the raw result of your join.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to