Skip to content
Advertisement

SQL Select from multiple tables and count third

I want to count number of rows in table that is referenced by two fields of other tables.

I’ve the following structure

Result that I want to achieve

The statement that I’ve tried, but getting error at right join

What I’m missing?

Advertisement

Answer

You are quite close. Main problems with your query:

  • you are mixing implicit and explicit joins: just don’t. Explicit joins are evaluated first, causing the error that you are getting (implicit joined tables are not yet identified)

  • you want a right join, not a left join; right join are quite counter-intuitive, I would recommend avoiding them in general

Consider:

This works by generating all possible combinations of branches and levels using a cross join (that’s basically a cartesian product of both tables), and then bringing the repos table with a left join. The rest is aggregation and counting how many repos records match each branch/level combination.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement