Viewing post 1 (of 1 total)
You can delete using a join clause.
This is taken from BOL examples on DELETE:
DELETE titleauthor
FROM titleauthor INNER JOIN titles
ON titleauthor.title_id = titles.title_id
WHERE titles.title LIKE '%computers%'
Maybe it's...
June 24, 2003 at 12:47 am
#462735