With this data
Team Name Won X Andy 1 X Cara 1 X Cara 1 X Eric 0 X Eric 0 X Eric 0 X Eric 0 Y Bill 0 Y Dave 0 Y Dave 1 Y Dave 1 I want for each team the number of players and the number of winners
Team Players Winners X 3 2 Y 2 1 Does it in two queries:
select team, count(distinct Name) as Players from test group by team select team, count(distinct Name) as Winners from test where Won=1 group by team but I can't work out the syntax to do it in one. TIA for your help. John