During sql queries with joins, do i need to use transactions?
I was thinking about something like:
Delete table1, table2, table3
FROM table1 INNER JOIN table2 ON(...)
LEFT JOIN table3 ON (...)
WHERE table1.column = something...
(I dont know if the syntax is 100% correct, but i guess that you understand it anyway)
Is there any risk that not all rows that should be deleted doesnt get deleted?
Thanks!