performance – single join select vs. multiple simple selects
There is only one way to know: Time it. In general, I think a single join enables the database to do a lot of optimizations, as it can see all the tables it needs to scan, overhead is reduced, and it can build up the result set locally. Recently, I had about 100 select-statements which … Read more