Hi,
I would like to delete records that are in one table but not the other, but keep getting a message saying: that you must pecify the table that contains the records you want to delete.
Here is the sql code:
DELETE ctable_in.vname, ctable_in.longname, ctable_in.section, ctable_in.level, ctable_in.cnum, ctable_in.cmax, ctable_in.ctext, ctable_in.check2, ctable_in.vnameorig, ctable_in.match, cfreqs_in.vname
FROM ctable_in LEFT JOIN cfreqs_in ON (ctable_in.[vname] = cfreqs_in.[vname]) AND (ctable_in.[cnum] = cfreqs_in.[cnum])
WHERE (((ctable_in.section)="h") AND ((ctable_in.ctext) Like "*break*") AND ((cfreqs_in.vname) Is Null))
Basically, I am trying to delete the records in ctable_in that don't have a matching record in cfreqs_in based on the criteria specified in the where statement.
Any suggestions to make this run successfully would be appreciated.
Thanks.