I know I am close on this but how do I delete values from a table (where the key identifier is in a linked table)?
This is what I have but I get I am missing something...
DELETE *
FROM Tbl_ClientFlightControl
WHERE Location IN (SELECT Location FROM tbl_regions WHERE Region Like "Asia Only" Or "EMEA Only" Or "EMEA and Asia" Or "N/A");
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
ASKER