hey guys i'm trying to delete records from 2 table that don't belong to our team. but i keep getting errors from access. here are the pictures below. i'm not sure if this is due to the relationship, but even so, many of the relationship do not even have referential integrity checked except the one is to many relationships
i've deleted records from these 2 tables before - all records before a certain date.
what i've tried:
1) doing a delete query selecting all fields from the tblParsing or the tblDataStorage with an outer join to tblTeamMembers where criteria is null.
2) i've done is that i've done a select query to select all the records i want to delete. then did a make table. from there a new query with the new table identifying records that need to be deleted and the tblParsing or tblDataStorage (i know i can't delete from 2 tables at one time). still can't work



delete tblForParsing.*
from tblForParsing
where tblForParsing.[task/activi
will delete everything where tblForParsing.[task/activi
or this one,
delete tblForParsing.*
from tblForParsing
where tblForParsing.[task/activi
will delete everything where tblForParsing.[task/activi