Skip to content
Advertisement

MySQL Query – Pending Friends Approval / Relationship between user & friends

I have two tables:

  • g_relationships (id,request_id,receiver_id,status,approved)
  • g_users (which contains: id,username,…)

I have a hard time making a query that adds a temporary column, checks whether userid: 4 exists in request_id or receiver_id column, and take the other userid and fetch username from g_users and adds it to the temporary column.

For example: Lets say I have userid 4. I then want to select g_relationships, and left join with g_users, and add a column that checks whether my userid (4) is in the request_id or the receiver_id column, and takes userid which isn’t mine, and checks which username that it is and fills the new column with.

For example: a correct result would look like this: (if I were to receive a friend request)

id request_id receiver_id status approved friend(new_column)
1 3 4 friend no Neo

But if I was the one who sent the friend request it would look like this

id request_id receiver_id status approved friend(new_column)
1 4 3 friend no Neo

In other words, the query should always check in what column that I don’t appear , and take that userid, and check against g_users table and place the username from there into friend column.

This is what I have come up with so far, but this only checks then request_id is not 4, and also doesn’t populate the temporary column “friend” with the username :/

Any suggestions?

Advertisement

Answer

I wrote this two ways. Both use an extra JOIN to the g_users table. The first is a single query that gets you the output you’re looking for, while the the second is (in my opinion) more readable but uses a UNION and is technically two queries.

They give the same output.

Sandbox setup:

Mega-JOIN:

UNION:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement