Delete Query Help

mccorj1

Board Regular
Joined
Aug 3, 2004
Messages
60
I have two tables with the same fields
Table 1 contains 8,000 and some records. Table 2 contains about 2,000 records. I want to delete the records where the pimary key of the two tables match. Can someone help please.

Thank you,
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
You just basically write a Select query with your join on the keys, targeting the table you want to remove the records from and jusy change it to a Delete query:

DELETE table1.*
FROM table1 LEFT JOIN table2 ON table1.Pkey = table2.Pkey;
 
Upvote 0

Forum statistics

Threads
1,221,798
Messages
6,162,025
Members
451,737
Latest member
MRASHLEY

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top