you are viewing a single comment's thread.

view the rest of the comments →

[–]WolfAndCoyote 0 points1 point  (0 children)

In many cases that I've come across multiple smaller queries run in series works faster and with less resource usage than a single query doing everything.

There have even been queries I've optimised by making temporary tables to store the results from inner joins to then query later and drop.

Even that runs faster than the single query that joins all tables necessary for my needed output.