I have the following table structure, A -< B represents one A can have many B
User -< Computer -< ComputerConfiguration -< Benchmark >- GameVersion >- Game
They are connected with PK int keys.
One user can have many computers, computer can have many configurations, configuration can have many benchmarks, and benchmark has FK to game version which has FK to game
How can I count a total number of unique games for each user?
Can I count number of computers, benchmarks and games per user - all in one query?