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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T18:03:37+00:00 2026-06-05T18:03:37+00:00

I have a table user and in addition INNER JOIN it with table cities

  • 0

I have a table user and in addition INNER JOIN it with table cities and a few others already. Now I also have the following table:

blocked_user
--------------------------------------------------------
id | user1_id | user2_id | timestamp

How can I use LEFT JOIN WHERE IS NULL, so both user combinations (user1 blocked user2 or user2 blocked user1) are excluded from the search results?

user
--------------------------------------------------------
id | username | ...

Thank you very much in advance for you help!

  • 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-06-05T18:03:38+00:00Added an answer on June 5, 2026 at 6:03 pm

    I’m guessing that you have a current user (the user who is performing the request) and you want to hide all users they have blocked or all users who have blocked them. I’m also assuming that user1_id is the user who did the blocking, and user2_id is the user they blocked. You should edit your question to make those points more clear.

    If that’s right, here’s what I would do:

    SELECT id, username
    
    FROM user
    
    LEFT JOIN (
        SELECT DISTINCT user2_id AS blockee_id
        FROM blocked_user
        WHERE user1_id = :current_user_id
    ) this_user_blocked
    ON user.id = this_user_blocked.blockee_id
    
    LEFT JOIN (
        SELECT DISTINCT user1_id AS blocker_id
        FROM blocked_user
        WHERE user2_id = :current_user_id
    ) blocked_this_user
    ON user.id = blocked_this_user.blocker_id
    
    WHERE this_user_blocked.blockee_id IS NULL
    AND blocked_this_user.blocker_id IS NULL
    

    I think it makes sense to use two separate LEFT JOIN ... WHERE ... IS NULL constructs because you are really checking for two different situations.

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

Sidebar

Related Questions

I have a table (user) that contains user information. I have another table (userview)
I have this table: User id INT PK login VARCHAR UNIQUE I want to
I have a table User which has the fields (id, first_name, middle_name, last_name). I
I have a table User and another Person , a person is an user
I have a table with user items. Each user may have several types of
I have one table containing user sessions and another to indicate violations in the
I have a table like so: Table eventlog user | user_group | event_date |
I'm just learning ruby on rails and I have a table of user roles
i have a user table id , username 22 , max 33 , jack
I have a table User with a bunch of indexes. One of them is

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.