How do I combine (join?) these two queries to get the aggregate win total for the player from both tables? For example, I want to know how many games I have won as singles and as doubles. Thanks.
select PLAYER, sum(WIN)as W from singles PLAYER
and
select PLAYER, sum(WIN)as W from doubles PLAYER