Let's start with a version of your data that's not normalized at all, and add some additional, reasonable data so we can see how normalization works here. (Assumes everyone has at least one email address and one phone number, simply to avoid talking about nulls.)
userid username email phonenumber
1 Alpha alpha1@test.com 123456
1 Alpha alpha2@test.com 123457
1 Alpha alpha3@test.com 123458
2 Beta beta1@test.com 234567
2 Beta beta2@test.com 234567 (2 email addresses, 1 phone)
3 Gamma gamma1@test.com 234678
3 Gamma gamma1@test.com 234679 (1 email address, 2 phones)
4 Alpha alpha32@test.com 345678 (2 people, #1 and #4, with same name)
If you look closely at that data, you'll find that the only key is {email, phonenumber}.
That's why you're having trouble getting only three rows--that key is nowhere in your tables. This is what @ontrack was getting at by saying, "Your tables do not have a unique relation between emails and phone-numbers."
Following the algorithm for determining candidate keys in any database textbook will give you the same thing. AFAIK, every textbook on database theory has at least one algorithm for determining candidate keys.
Obviously, if you had a table that had {email, phonenumber} as the key, you'd get only 3 rows for userid 1.