Problem Deleting

  • Thread starter Thread starter Raj
  • Start date Start date
R

Raj

DELETE [oldAcct].[Account Number], [tbl_FE to Prod].*
FROM [oldGov Acct] INNER JOIN [tbl_FE to Prod] ON
[oldAct].[Account Number] = [tbl_FE to
Prod].customer_account
WHERE (([account number]=[customer_account]));
 
Raj,

Why don't you just build a relationship between these two
tables, set referential Integrity, and select cascading
deletes?

This would be much simpler!

HTH
Dale
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top