I need to delete all the rows in the multiple rows where it's the same UserId. Please look at my Delete command below:
===============
DELETE FROM tableA
FROM tableA INNER JOIN
tableB ON tableA.UserId = tableB.UserId INNER JOIN
tableC ON tableA.UserId = tableC.UserId INNER JOIN
tableD ON tableA.UserId = tableD.UserId
WHERE (tableA.UserId = @UserId) AND (tableB.UserId = @UserId) AND (tableC.UserId = @UserId) AND (tableD.UserId = @UserId)
===============
What is happening from the above query is only the rows from tableA is getting deleted.
Please help me on this.
Thank you!
Last edited by laxatcg1; January 5th, 2010 at 03:59 AM.
Reason: Change in content
or else you will have to write a Stored procedure that executes multiple deletions, deleting first from children tables and then from parents
delete from tableChidlA where
delete from tableChildB where
delete from tableFather where
but in this case to be sure you preserve integrity, you should also use transaction
...at present time, using mainly Net 4.0, Vs 2010
Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
all the other wonderful people who made and make Codeguru a great place.
Come back soon, you Gurus.
Bookmarks