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

  • Home
  • SEARCH
  • 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 7308495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T23:33:54+00:00 2026-05-28T23:33:54+00:00

I have a table called friends which has id and name and a self

  • 0

I have a table called friends which has id and name and a self join table called friendship which stores the relationship which includes friend_id and friend2_id .
how do i get the names of related friends if a name of a particular frnd is given

example

id name
1  jack
2  kurt
3  jim

and

friendship
f_id f1_id
1    3 

So if i give ‘jack‘ i should get jim back

  • 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-28T23:33:55+00:00Added an answer on May 28, 2026 at 11:33 pm

    You could do this in one query or two queries, depending on what you want to accomplish.

    A simple one could be:

    SELECT
      f_id,
      f1_id
    FROM
      friendship
    WHERE
      f_id=1
      OR
      f1_id=1
    

    And then you can get the specific friends with a statement like:

    SELECT name FROM people WHERE id IN(2,3)
    

    Alternative is a self join but the hard part here is that your id might be in both f_id and f1_id so that would need some UNION command or something like (untested):

    SELECT
      p1.name,
      p2.name,
    FROM
      friendship
      INNER JOIN
        people AS p1
          ON friendship.f_id = people.id
      INNER JOIN
        people AS p2
          ON friendship.f1_id = people.id
    WHERE
      p1.id=1 OR p2.id=1
    

    I would thoroughly check the speed of these options since they are quite heavy on huge amounts of records. If you measure you need more performance try some alternative. For example when you always put the smallest people.id in f_id and the bigger one in f1_id you might run 2 queries which you union. Alternative is to denormalize a small bit to cache the results if you need them frequently.

    It would save you lots of joings for example if you would add the names into the friendship table:

    SELECT
      f_id,
      f1_id,
      f_name,
      f1_name
    FROM
      friendship
    WHERE
      f_id=1
      OR
      f1_id=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 called BlogPost which has a 1-to-many relationship with the Comment
I have a table called user_relationship. which has two foreign keys refering back to
Have a table called person. which has personid and contactid. if a person is
I have a table called ApprovalTasks... Approvals has a status column I also have
i have a table called category in which i have main category ids and
I have a table called Orderrow. Orderrow has a a compound primary key (CPK)
I have a table called ProjectRegion. It has two columns, an id and a
I have a data table. Each row of the table has a commandButton called
I have a table called USERS that has a foreign key to the table
i have table called type which contains data family,individual i want in some pages

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.