At last there is some meaningful information about your table structure.
What your original post was missing was the BandMembers table which shows the members of any particular band.
Create a query with the following SQL and advise if that is what you want.
Code:SELECT Bands.[Band Name], Count(Events.[Event Id]) AS [CountOfEvent Id], Sum(Bands.Price) AS SumOfPrice FROM Musicians INNER JOIN ((Bands INNER JOIN Events ON Bands.[Band Name] = Events.[Band Name]) INNER JOIN [Bandmembers(1)] ON Bands.[Band Name] = [Bandmembers(1)].BandName) ON Musicians.unionNo = [Bandmembers(1)].UnionNo GROUP BY Bands.[Band Name];
To create the query from SQL, start creating a query but do not add any tables, then go to Home |View | SQLview and paste the text into the window, then go into design view
Many thx it work fine but the 2nd part of Q is remaining.
My question is
"query that displays the band name, the number of events that they have played at, the number of musicians in the band, the total amount earned by the band and the total amount earned by each band member (assuming that the fee is split equally)"