Given a logging table: CREATE TABLE log(type TEXT, amount INTEGER) SELECT type, SUM(amount), COUNT(*) FROM log GROUP BY type
What would be good approaches to make the query fast? Wout. _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

