up vote 84 down vote favorite
30
share [g+] share [fb]

Scenario:

Let's say I have two tables, TableA and TableB. TableB's primary key is a single column (BId), and is a foreign key column in TableA.

In my situation, I want to remove all rows in TableA that are linked with specific rows in TableB: Can I do that through joins? Delete all rows that are pulled in from the joins?

DELETE FROM TableA 
FROM
   TableA a
   INNER JOIN TableB b
      ON b.BId = a.BId
      AND [my filter condition]

Or am I forced to do this:

DELETE FROM TableA
WHERE
   BId IN (SELECT BId FROM TableB WHERE [my filter condition])

The reason I ask is it seems to me that the first option would be much more effecient when dealing with larger tables.

Thanks!

link|improve this question

feedback

6 Answers

up vote 124 down vote accepted
DELETE TableA 
FROM TableA a
INNER JOIN
TableB b on b.Bid = a.Bid
and [my filter condition]

should work

link|improve this answer
I used And [my filter condition] on the join instead of a Where clause. I would imagine both would work, but the filter condition on the join will limit your results from the join. – TheTXI Jan 13 '09 at 16:51
3  
One question. Why do we need to write 'DELETE TableA FROM' instead of 'DELETE FROM'? I see it works only in this case, but why? – user193655 Oct 20 '10 at 13:53
12  
I think because you have to indicate which table to delete records from. I just ran a query with the syntax DELETE TableA, TableB ... and that actually deleted the relevant records from both. Nice. – Andrew Dec 24 '10 at 23:23
3  
@Andrew, keep in mind, this doesn't work in T-SQL. – negative Sep 20 '11 at 1:02
feedback

I would use this syntax

Delete a 
from TableA a
Inner Join TableB b
on  a.BId = b.BId
WHERE [filter condition]
link|improve this answer
I prefer this syntax as well, seems to make a little more sense logically what is going on. Also, I know you can use this same type of syntax for an UPDATE. – Adam Nofsinger Nov 24 '10 at 21:58
feedback

Yes you can. Example :

DELETE TableA 
FROM TableA AS a
INNER JOIN TableB AS b
ON a.BId = b.BId
WHERE [filter condition]
link|improve this answer
feedback

It's almost the same in MySQL, but you have to use the table alias right after the word "DELETE":

DELETE a
FROM TableA AS a
INNER JOIN TableB AS b
ON a.BId = b.BId
WHERE [filter condition]
link|improve this answer
feedback

Was trying to do this with an access database and found I needed to use a.* right after the delete.

DELETE a.*
FROM TableA AS a
INNER JOIN TableB AS b
ON a.BId = b.BId
WHERE [filter condition]
link|improve this answer
feedback

The syntax above doesn't work in Interbase 2007. Instead, I had to use something like:

DELETE FROM TableA a WHERE [filter condition on TableA] 
  AND (a.BId IN (SELECT a.BId FROM TableB b JOIN TableA a 
                 ON a.BId = b.BId 
                 WHERE [filter condition on TableB]))

(Note Interbase doesn't support the AS keyword for aliases)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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