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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:16:54+00:00 2026-05-26T05:16:54+00:00

I got a table with username, usergroup and usertype. A 0 0 B 0

  • 0

I got a table with username, usergroup and usertype.

A 0 0
B 0 1
C 1 2
D 2 2

Now i want something like

get all the users where the group is 0 or 1 and type is 2

I use:

SELECT * FROM table WHERE usergroup= 0 OR 1 AND usertype=2 GROUP BY usergroup

I expect it will return the username C, but strangely it returns A,C,D
What am I doing wrong?

  • 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-26T05:16:55+00:00Added an answer on May 26, 2026 at 5:16 am

    I’m going to ignore that GROUP BY.


    SELECT * FROM table WHERE usergroup= 0 OR 1 AND usertype=2
    

    What am I doing wrong?

    First, you have precedence issues; your SQL query is equivalent to:

    SELECT * FROM table WHERE usergroup = 0 OR (1 AND usertype=2)
    

    Use parentheses to be clear:

    SELECT * FROM table WHERE (usergroup = 0 OR 1) AND usertype=2
    

    There’s still a problem, in that boolean operators simply don’t work like this: 0 OR 1 is an expression that evaluates to 1.

    You have to repeat the thing you’re comparing against:

    SELECT * FROM table WHERE (usergroup = 0 OR usergroup = 1) AND usertype=2
    

    However, this can be shortened thus:

    SELECT * FROM table WHERE usergroup IN (0, 1) AND usertype=2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a column in a table (eg. UserName) which I want to make
My database have got 4 table : users id username images id user_id image
I've got three tables; Auctions, Auction Bids and Users. The table structure looks something
I've got a sqlite table actions that looks something like this: uuid varchar (36)
I got a table named users, and I'm doing array = User.where(username=?, username) to
I've got a table where the columns that matter look like this: username source
I have got a Sales table which has fields like upgrade[yes/no] date upgraded[datetime] user[username]
I've got a table of URLs and I don't want any duplicate URLs. How
I've got 2 tables: ----Users----- id (int) username (varchar) ----Log----- id (int) user_id (int)
I have a site 'accounts' table which contains account details for all our users.

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.