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 509319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:59:55+00:00 2026-05-13T06:59:55+00:00

I am coding a friendship system and it has two tables. members id username

  • 0

I am coding a friendship system and it has two tables.

members

  • id
  • username
  • password

friends

  • id
  • user_id
  • friend_id
  • status

Let’s say that i want a query that can select the friends IDs of the member $userId how possible to make this in one query?

I found a solution which is to make 2 queries. The fist selects the friends WHERE user_id = $userId AND the second selects friends WHERE friend_id = $userId and then MIX them in one array. If there is no other solution I’m going to use it.

please any ideas for both the SQL structure & Queries?

  • 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-13T06:59:55+00:00Added an answer on May 13, 2026 at 6:59 am

    Use:

    SELECT f.friend_id
      FROM FRIENDS f
     WHERE f.user_id = $user_id
    UNION
    SELECT t.user_id
      FROM FRIENDS t
     WHERE t.friend_id = $user_id
    

    Using UNION will remove duplicates. UNION ALL would be faster, but it doesn’t remove duplicates.

    If you want to get the information for the friends from the MEMBERS table, use:

    SELECT m.*
      FROM MEMBERS m
      JOIN (SELECT f.friend_id 'user_id'
              FROM FRIENDS f
             WHERE f.user_id = $user_id
            UNION
            SELECT t.user_id
              FROM FRIENDS t
             WHERE t.friend_id = $user_id) x ON x.user_id = m.id
    

    BTW: I hope you’re using mysql_escape_string on the variables, otherwise you risk SQL injection attacks:
    alt text

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

while coding in asp.net C# MVC 2.0, how to show error messages let say
The coding is done using VS2008 There are two divs in my page namely
Here's a coding problem for those that like this kind of thing. Let's see
I am working on maintaining a ASP.NET MVC application that has the following coding
When coding web services, how do you structure your return values? How do you
In coding a traditional MVC application, what is the best practice for coding server-side
When coding, what in your experience is a better approach? Break the problem down
When coding, what is a good rule of thumb to keep in mind with
Our coding standards ask that we minimise the use of C# var (suggests limiting
During coding I frequently encounter this situation: I have several objects ( ConcreteType1 ,

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.