jgbell
05-07-2002, 09:27 AM
Hello,
Have seen this question posted but not seen the answer I can make work yet. Have mercy.
Assumption: table1.field2 = table2.field2
Goal: delete from table1 entries found in table2
DELETE Table1.*
FROM Table1 INNER JOIN Table2 ON Table1.Field2 = Table2.Field2;
I see "Could not delete from specified tables" when I try this or various other messages when I try variants of this. What am I missing?? HELP talks about error 3086 and permissions. I bet that is a symptom and not the problem. "Select" sure works just fine... Thanks in advance.
Have seen this question posted but not seen the answer I can make work yet. Have mercy.
Assumption: table1.field2 = table2.field2
Goal: delete from table1 entries found in table2
DELETE Table1.*
FROM Table1 INNER JOIN Table2 ON Table1.Field2 = Table2.Field2;
I see "Could not delete from specified tables" when I try this or various other messages when I try variants of this. What am I missing?? HELP talks about error 3086 and permissions. I bet that is a symptom and not the problem. "Select" sure works just fine... Thanks in advance.