CheeZe5
CheeZe5

Reputation: 995

Select parent if all children meet criteria

I have tables set up like so:

Parent
------
id, ...

Child
-----
id, parent_id, x, y

I want to find the Parents, or the distinct parent_id(s), if all of the rows in Child containing a given parent_id meet a criteria involving x and y(in my case x = y).

For example:

Parent
------
id
 1
 2
 3

Child
id, parent_id, x, y
1,      1,     2, 3
2,      1,     3, 4
3,      2,     5, 5
4,      2,     6, 7
5,      3,     8, 8
6,      3,     9, 9

would result in 3. Currently, I have a query that finds parent_ids that any of the children meet the criteria. I then use that to retrieve those records and check them in code if all the children meet the criteria. With the example data, I get parent_id 2 and 3, get the two parent records with all children, and evaluate. I want to do this with a single query, if possible.

Upvotes: 12

Views: 13150

Answers (4)

Misho73bg
Misho73bg

Reputation: 58

Old question, but I think it worth to give my 5 cents on this topic. I believe more efficient way is to use HAVING clause:

SELECT 
   Parent.id
FROM
   Parent 
   JOIN Child ON Child.parent_id = Parent.id
GROUP BY
   Parent.id
HAVING
   SUM( CASE WHEN Child.x = Child.y THEN 1 ELSE 0 END) = COUNT( * )

Upvotes: 1

AnandPhadke
AnandPhadke

Reputation: 13486

This is what you need?

  select id from parent where id not in(
    select parent_id from child 
    where x<>y
    group by parent_id)

Upvotes: 1

Hoang Khanh
Hoang Khanh

Reputation: 11

Should join 2 tables first because the parents does not have children that will satisfy

And should add index for pa_id column

SELECT DISTINCT pa.id 
FROM pa INNER JOIN c ON c.pa_id = pa.id 
WHERE NOT EXISTS ( SELECT 1 FROM c WHERE c.parent_Id = p.id and c.x <> c.y )

Upvotes: 1

Tim Schmelter
Tim Schmelter

Reputation: 460058

You can use NOT EXISTS

SELECT id 
FROM Parent p
WHERE NOT EXISTS
(
   SELECT 1 FROM Child c
   WHERE c.parent_Id = p.id
   AND c.x <> c.y
)

Edit: Here's the sql-fiddle: http://sqlfiddle.com/#!3/20128/1/0

Upvotes: 25

Related Questions