delete where

DELETE TableA 
FROM TableA a
INNER JOIN
TableB b on b.Bid = a.Bid
and [my filter condition]

DELETE ab
FROM AuthorArticle AS ab, Authors AS a
WHERE ab.AuthID=a.AuthID AND AuthorLastName='Watts';



你可能感兴趣的:(delete where)