vote up 0 vote down star

So I've asked a couple of questions about performing joins and have had great answers, but there's still something I'm completely stumped by.

I have 3 tables. Let us call them table-b, table-d and table-e.
Table-b and table-d share a column called p-id.
Table-e and table-b share a column called ev-id.
Table-e also has a column called date.
Table-b also has a unique id column called u-id.

I'd like to write a query which returns u-id under the following conditions:
1) Restriced to a certain value in table-e.date.
2) Where table-b.p-id does not match table-d.p-id.

I think I need to inner join table-b and and table-e on the e-id column. I then think I need to perform a left join on table-d and and table-b where p-id is null.
My problem is that I don't know the syntax of writing this query. I know how to write multiple inner joins and I know how to write a left join. How do I combine the two?

Thanks so much to everyone who is helping me out. I'm (obviously!) a newbie to databases and am struggling to get my head around it all!

flag

Please post the two partial queries -- it helps us if you show what you've tried so far. – S.Lott Jul 4 at 18:09
Are you sure about condition 2? e.g. if you have p-id of 2, 3, 4 in table b and d, you want 2 in b to match 3 and 4 in d, 3 in b to match 2 and 4 in d, and 4 in b to match 2 and 3 in b? also, do you want null in b to match null in d? – Jeremy Jul 4 at 18:13
I can't post the partial queries cos I haven't written them for this example. I just meant I know the generic syntax for performing joins. – musoNic80 Jul 4 at 18:17
I don't quite follow @Jeremy. I want to return the u-id from table-d but only for those records that have a p-id in table-d that doesn't appear in table-b. Does that make any more sense? – musoNic80 Jul 4 at 18:19
ah, right. That's a "not in" rather than a "left join" :) – Jeremy Jul 4 at 18:24

2 Answers

vote up 0 vote down check

I think it's something like this:

SELECT uid
  FROM table-b
  INNER JOIN table-e
      ON table-b.ev_id = table-e.ev_id
  WHERE table-b.p_id NOT IN (SELECT p_id from table-d)
link|flag
1) You forgot the table-e.date=XXX condition 2) I find this clearer than the one from @Alex however I believe that mysql would run this slower if table-d has many rows (even though the subselect will be run only once) – daremon Jul 5 at 1:36
vote up 3 vote down

You just write the joins one after the other:

SELECT b.uid
  FROM b
  INNER JOIN e USING(evid)
  LEFT JOIN d USING(pid)
  WHERE e.date = :whatever
    AND d.pid IS NULL
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.