Assume these Tables:
Group: (Id, Title): {1,G1}, {2,G2}, {3,G3}, {4, G4}
Category: (Id, Title): {1, Cat1}, {2, Cat2}, {3, Cat3}, {4, Cat4}
Product: (Id, GroupId, CategoryId, Name):
{1, 1, 1, G1C1P1},
{2, 1, 2, G1C2P2},
{3, 1, 2, G1C2P3},
{4, 2, 2, G2C2P4},
{5, 2, 2, G2C2P5},
{6, 3, 1, G3C1P6},
{7, 3, 3, G3C3P7}
So What I need is Count of any Category by Group for the above values is:
Group Category Count
----------------------
G1 Cat1 1
G1 Cat2 2
G1 Cat3 0
G1 Cat4 0
G2 Cat1 0
G2 Cat2 2
G2 Cat3 0
G2 Cat4 0
G3 Cat1 1
G3 Cat2 0
G3 Cat3 1
G3 Cat4 0
G4 Cat1 0
G4 Cat2 0
G4 Cat3 0
G4 Cat4 0
I try this:
SELECT
[GR].[Title] AS [Group],
COUNT([PR].[Id]) AS [Count],
[CA].[Title]
FROM [dbo].[Group] AS [GR]
FULL OUTER JOIN [dbo].[Product] AS [PR] ON [GR].[Id] = [PR].[GroupId]
FULL OUTER JOIN [dbo].[Category] AS [CA] ON [PR].[CategoryId] = [CA].[Id]
GROUP BY [CA].[Title], [GR].[Title];
GO
But it’s not the exact one, So What is your suggestion?
You need to
CROSS JOINthe two tables (GroupandCategory) to create all possible group-category combinations and thenLEFT JOINto theProducttable:or this way (first
GROUP BYin the Products table and then join the derived table):If the
Group(Title)and theCategory(Title)columns are unique, the queries are equivalent (except for the ordering).