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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:45:25+00:00 2026-05-26T17:45:25+00:00

I want to have a table with columns: id, user_id1, and user_id2. basically this

  • 0

I want to have a table with columns: id, user_id1, and user_id2.

basically this will resprsent a friend graph with the link representing that user1 is friends with user2 AND vice versa.

my setup gets a single user and then a list of their friends. given that I don’t want to have extra entries in my table how shoudl I handle this?

I want to do something like: insert into friendship (user_id1, user_id2) values (<id1>, <id2>) where ...

but I’m not sure how to do conditional logic like that in SQL

  • 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-26T17:45:26+00:00Added an answer on May 26, 2026 at 5:45 pm

    You could force user_id1 to always be less than user_id2 with a CHECK constraint:

    CHECK (user_id1 < user_id2)
    

    Presumably people aren’t allowed to be their own friends. And then make sure the IDs are in the right order before you INSERT. When extracting a list of friends, you’d still have to check both columns though:

    select user_id2 from friendship where user_id1 = X
    union all
    select user_id1 from friendship where user_id2 = X
    

    where X is, of course, the person you’re interested in. And to see if two people are friends, just arrange their IDs in the right order and SELECT away.

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

Sidebar

Related Questions

I have a table that has some columns: User, Category, Value And I want
I have one table with 2 columns that i essentially want to split into
I have table with 3 columns A B C. I want to select *
I have a table with four columns: PartNumber, ValvePartNumber, ActuatorPartNumber, Price I want to
I have a table with the following columns: EntityId, EntityName, EntityProfile, ................. I want
I have a SQL Server table with 2 columns, Code and CodeDesc. I want
I have to select requests that i want to combine using UNION : Table
I have a table with 4 columns. I want to be able to INSERT
I have this SQL Table: TABLE: Info COLUMNS:| Name | Value --------|----------|------------------ ROW: |
I want to have a database table that keeps data with revision history (like

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.