SQL - Database Design and Normalization
What will be the result of this query on a star schema?
SELECT d.StoreName, COUNT(*) AS SalesCount FROM Sales f INNER JOIN Store d ON f.StoreID = d.StoreID GROUP BY d.StoreName HAVING COUNT(*) > 100;
