What is the best way to get the best selling teams by each month when I have tables like these:
The results should be something like this (group by total price of orders):
Month | Team | Sales
____________________
March |   2  | 3453 
April |   3  | 1353 
May   |   2  | 5341
I have joined two tables before but for some reason joining 4 tables and grouping them by month seems difficult. Thank you.

 
     
    