I am trying to create a table for 'Friends' in MySQL.
I have a 'Users' table with an attribute of 'user_id' which is the table's primary key.
I would like a friendship table which allows a user to add another user as a friend. However that user will remain an acquaintance to the new friend.
So for example, USER_A connects with USER_B and USER_B is now a friend of USER_A, however USER_B does not see USER_A as a friend and thus USER_A is still only an acquaintance of USER_B.
userA | userBanduserB | userA- zerkms