Ok this is going to be an extensive one. All help is very appreciated.
I'm working on a task where I have schema for a Lottery.
The task is to make a query that returns which County (not country) has had the most winners in total, a count for how many winners that County has had, if a County has won more than once they are to be counted for every time they've won.
In the Municipality Table we have MunicipalityID, County, Population and Name --
In the Player Table we have PlayerNum, Name, Address and MunicipalityID --
In the County Table we have CountyID, Population and Name --
In the Winner Table we have PlayerNum and DrawID --