This is probably very easy, but it's Monday morning. I have two tables:

Table1:

Field        | Type             | Null | Key | Default | Extra
id           | int(32) unsigned | NO   | PRI | NULL    | auto_increment
group        | int(32)          | NO   |     | 0       |

Table2:

Field     | Type             | Null | Key | Default | Extra
group     | int(32)          | NO   |     | 0       |

Ignoring other fields...I would like a single SQL DELETE statement that will delete all rows in Table1 for which there exists a Table2.group equal to Table1.group. Thus, if a row of Table1 has group=69, that row should be deleted if and only if there exists a row in Table2 with group=69.

Thank you for any help.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

I think this is what you want:

delete from table 1
where group in (select distinct group from table2)
link|improve this answer
muchos gracias. – Kenny Cason Mar 19 at 2:03
feedback

Something like this

delete from table1 where group in (select group from table2)
link|improve this answer
I'd select distinct in the subquery – Voytek Jarnot Nov 23 '09 at 15:22
Isn't using distinct just more work to remove duplicates from the subquery? I'd leave it off. – Paul Morgan Nov 23 '09 at 18:48
feedback

Off the top of my head:

delete from Table1 where id in (select id from table1 inner join table2 on Table1.group = Table2.group)

I did this a little differently than other posters -- I think if there is a large number of rows on Table2 this might be better. Can someone please set me straight on that?

link|improve this answer
feedback

The nice solution is just writing the SQL as you say it yourself already:

DELETE FROM Table1
WHERE
  EXISTS(SELECT 1 FROM Table2 WHERE Table2.Group = Table1.Group)

Regards, Arno Brinkman

link|improve this answer
I like about this solution that it contains a WHERE clause. This means that it will still work if you want to delete only such lines which match across several columns in the two tables. – malamut Feb 9 at 15:57
feedback

Your Answer

 
or
required, but never shown

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