So I have three columns, servers, space and user. Now I want to get the whole amount of space. But sometimes I got entries like {server1, 10, james} and {server1, 10, john}. That's why I cannot just simply do sum(space). So I have to distinct it by the servers. How can I do this?