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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:51:12+00:00 2026-05-28T15:51:12+00:00

Is what i have: SELECT users.* FROM users INNER JOIN roles_users ON users.id =

  • 0

Is what i have:

SELECT users.*
            FROM users INNER JOIN roles_users ON users.id = roles_users.user_id 
            WHERE roles_users.role_id IN (1)
            GROUP BY users.id
            HAVING COUNT(*) = 1

I would like to grab all the users that ONLY has one row, with role_id 1.

The above query grabs all the users that have a row with role_id 1, so it shows also those who have more rows with role_id 2, role_id 3 for example.

So how can i do WHERE roles_users.role_id IN (1) AND NOT in 2,3,4.. something?

  • 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-28T15:51:13+00:00Added an answer on May 28, 2026 at 3:51 pm

    Add an anti-join to exclude those users that also have other roles

    SELECT users.*
    FROM users
    INNER JOIN roles_users ON users.id = roles_users.user_id 
    -- replace by IN (1, 4) if needed
    WHERE roles_users.role_id IN (1)
    AND NOT EXISTS (SELECT 1 FROM roles_users
                     WHERE roles_users.user_id = users.id
                        -- replace by NOT IN (1, 4) if needed
                       AND roles_users.role_id NOT IN (1))
    GROUP BY users.id
    HAVING COUNT(*) = 1
    

    The above is quite MySQL-specific as normally, you shouldn’t select columns that are not part of the GROUP BY clause. Besides, maybe it is not best performing, as roles_users is joined two times to users. I don’t know if MySQL can optimise this.

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

Sidebar

Related Questions

Say I have the following: $query = SELECT user_id,email,password, roles.role_id,role_name FROM users JOIN roles
SELECT user_id FROM user_accounts INNER JOIN roles_users ON (user_accounts.user_id = roles_users.user_id) WHERE roles_users.role_id IN
I have a following SQL QUERY: SELECT articles.name, articles.price, users.zipcode FROM articles INNER JOIN
i have this SELECT COUNT(1) cnt, a.auther_id FROM `posts` a LEFT JOIN users u
$sql = SELECT messages.text, users.name FROM messages INNER JOIN users ON messages.user_id=users.id ORDER BY
In T-SQL you could have a query like: SELECT * FROM Users WHERE User_Rights
I am using MySQL. I have several lookups like this: SELECT * from users
I have a SQL-statement like this: SELECT name FROM users WHERE deleted = 0;
I have two queries serving the same purpose. SELECT * FROM #user INNER JOIN
$query = $connect->prepare(SELECT users.firstname, users.lastname, users.id FROM users INNER JOIN users_friends ON users.id=users_friends.uID WHERE

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.