SQL - Database Design and Normalization
A query on a star schema returns fewer rows than expected:
What is the likely cause?
SELECT d.Region, SUM(f.Sales) FROM FactSales f LEFT JOIN DimStore d ON f.StoreID = d.StoreID WHERE d.Region = 'West' GROUP BY d.Region;
What is the likely cause?
