S
Song
I try to delete agent (1 side) that has no matching record in master (many
side) but it would not allow me to do so. I can select, but not delete. Here
is my sql
DELETE tblAgent.*
FROM tblAgent LEFT JOIN tblMaster ON tblAgent.AgentID = tblMaster.AgentID
WHERE (((tblMaster.AgentID) Is Null));
side) but it would not allow me to do so. I can select, but not delete. Here
is my sql
DELETE tblAgent.*
FROM tblAgent LEFT JOIN tblMaster ON tblAgent.AgentID = tblMaster.AgentID
WHERE (((tblMaster.AgentID) Is Null));