On 11/17/16, Paul <[email protected]> wrote: > That's why there was a LEFT JOIN in the first place, but as it seems, it > wasn't that good idea.
Try using CROSS JOIN instead of just JOIN or LEFT JOIN. The query planner in SQLite will not reorder a CROSS JOIN. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

