I've been messing around with this for days. I have tables of Managers, Sites they are assigned to, and Growers that are assigned to those sites. I need to know how many growers a manager has. Managers are assinged to sites but not growers so I have to go through this drill to find out how many growers a particular manager has based on the grower assigned to each individual site he has. A site only has one grower. I can get the number of growers for a particular manager fairly easily but I want to return a single table containing the number of growers for each manager and I'm stumped.
I have the following code:
DECLARE @ManagerID INT
DECLARE @getManagerID CURSOR
SET @getManagerID = CURSOR FOR
SELECT ID
FROM Managers
OPEN @getManagerID
FETCH NEXT
FROM @getManagerID INTO @ManagerID
WHILE @@FETCH_STATUS = 0
BEGIN
SELECT COUNT(Grower) AS NumGrowers
FROM Growers
WHERE Growers.ID IN
(
SELECT sitesg.Grower
FROM SitesG
WHERE SitesG.id IN
(
SELECT SITE
FROM ManagerSites
WHERE ManagerSites.Manager IN
(
SELECT ID
FROM Managers
WHERE ID = @ManagerID
)
)
)
FETCH NEXT
FROM @getManagerID INTO @ManagerID
END
CLOSE @getManagerID
DEALLOCATE @getManagerID
This gives me a bunch of results that I can probably store in a temporary table but there must be a better way. Any ideas?
-Joe
