Hello!
I have a table that looks like this

This is a list of people (namn) drinking different beers.
I want to be able to sort out the people who only drinks one type of beer (only names).For example: Alan drinks Sofiero, Lapin Kulta, Tuborg, Bass etc. Alan shouldn't be on the list.
Kari on the other hand only drinks Tuborg so I want him on the new list.
I'm pretty sure i got it right in sql (select * from TABELL group by namn, beer having count(*) = 1), but I need help translating this into relational algebra.
Thanks
