Hello,
in a SQL Express db, I'm trying to delete rows from 3 different tables. Basically, I'd like to delete the result of the following query:
SELECT *
FROM tbPartners, tbClients, tbTrans
WHERE tbClients.ClientVar <> 11 AND tbClients.PartIndex = tbPartners.PartIndex AND tbClients.ClientIndex = tbTrans.ClientIndex
What's the best way to accomplish this, assuming that the result might count several hundreds records?
Thanks!
J
Start Free Trial