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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:31:40+00:00 2026-05-23T14:31:40+00:00

PID VALUE 3 1 4 3 1 9 1 3 How to select row(s)

  • 0
PID       VALUE
3        1
4        3
1        9
1        3

How to select row(s) that has both values 3 and 9? I tried

select PID from table where VALUE = 3 and VALUE = 9

So that i get something like below, instead i get an empty set.

PID      
1       

PID 4 should not be included in the result because it do not have VALUE 9

  • 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-23T14:31:40+00:00Added an answer on May 23, 2026 at 2:31 pm

    The WHERE clause can only evaluate conditions against one row from a given table at a time. You can’t make a condition span multiple rows.

    But you can use a self-join to match multiple rows from the same table into one row of the result set, so you can apply a condition that involves both.

    SELECT t1.pid
    FROM table t1 JOIN table t2 ON t1.pid=t2.pid
    WHERE t1.value = 3 AND t2.value = 9;
    

    An alternative solution is to use GROUP BY and count the distinct values:

    SELECT t.pid
    FROM table t
    WHERE t.value IN (3,9)
    GROUP BY t.pid
    HAVING COUNT(DISTINCT t.value) = 2;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I like to get window pid (only firefox) from wmctrl, i tried wmctrl -lp
I have 3 tables with values like below **tbl_product** recID pID price colour 1
Is there a way to get the PID from a process that is blocking
Hi i want to get changed text value from JQuery but i can't select
I have a Masterpage that has Treeview. You can select some nodes there. Based
SELECT count(P.pID) FROM Department D, Professor P WHERE D.dID = ? AND P.dID =
I'd like to select a new column named sliced (value can be 1/0 or
I need to create a process that will extract the changes from a table
assuming that I know the PID of a process and want to do a
I have a problem with a HQL query. I want to get all PID

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.