for my homework I've have the following task: I've got a simple database which is like facebook with friends and their relations. Now I have to count the number of direct friends and the number of the friends of the direct friends.
So my approach was: Selecting all direct friends and store their ids's in a variable. Then I iterate over these ids and store all direct friends of the current user in another variable. (For each in the same). In the end I've got a big array with alle the related user id's. Then I just have to select distinct the id's and count them.
My Problem is: How do I store the id's in a variable (array?) so that I can easily loop over them and in the end do a distinct select of the id's?
Hope you can give me a hint on that...
