Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7585305
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:08:38+00:00 2026-05-30T19:08:38+00:00

I have a table which links the userID and the friendID (which is another

  • 0

I have a table which links the userID and the friendID (which is another user) to say they are friends.
If User 1 adds User 24 as their friend, the first row in the below table will happen
If User 10 adds User 1 as their friend, the second row in the below table will happen

From there, even if User 1 is on either side, they are friends with the adjacent ID.

FRIENDS TABLE:

userID | friendID
-----------------
   1   |    24
   10  |    1

What I need to do now is: If User 1 is logged in, I need to display the people they are friends with. This query I have wrote:

SELECT DISTINCT (Users.username), friends.userID, friends.friendID FROM Users, friends WHERE Users.userID IN(SELECT userID FROM friends WHERE Users.userID = friends.userID) OR Users.userID IN(SELECT DISTINCT(userID) FROM friends WHERE Users.userID = friends.friendID)

Will bring back:

username | userID | friendID
-----------------------------
   name1 |   10   |    1
   name1 |   1    |    24
   name2 |   10   |    1
   name2 |   1    |    24

name1 = ID 1
name2 = ID 10

Is there a way where I can retrieve the logged in Users’friends (e.g. if ID #1 is logged in) whether they appear in the userID or friendID columns. and then, in this case, retrieve ID 24 and 10 because they are linked with ID #1, and then when it comes to displaying, eliminate ID # 1 from the list because it will bring up that they are friends with themselves.

Hope this makes sense and thank you in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T19:08:39+00:00Added an answer on May 30, 2026 at 7:08 pm

    Here’s an easy way to do it with UNION. This also takes care of duplicates:

    (SELECT userID
    FROM friends
    WHERE friendID = 1)
    UNION
    (SELECT friendID
    FROM friends
    WHERE userID = 1)
    

    If you want to return usernames too, you can do your JOINs inside the subqueries:

    (SELECT f.userID, u.username
    FROM friends f
    JOIN users u
      ON u.userID = f.userID
    WHERE f.friendID = 1)
    UNION
    (SELECT f.friendID, u.username
    FROM friends f
    JOIN users u
      ON u.userID = f.friendID
    WHERE f.userID = 1)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table which defines what things another table can have, for example:
I have two tables User and UserRole which are they connected using a link
Situation Say I have the following: a table items a table lists to which
I have a database table which link locations together; a location can be in
I have a table which needs to link one of three seperate tables, but
I have table which contains double values stored in mysql database ...I need to
I have a table which has several one to many relationships with other tables.
I have a table which has two text boxes and an image beside it
I have a table which contains my ads that can be searched in sql-server-2008.
I have a table which is updated with ajax and after update it if

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.