S
Stewart Berman
Access 2007
Table1:
Field: ABC (AutoNumber)
PrimaryKey: ABC
Field: Data (Text)
Values:
ABC Data
1 abc
2 def
Table2:
Field: Lower (Long Integer)
Field: Upper (Long Integer)
Values:
Lower: 1
Upper: 3
Query:
DELETE Table1.*, Table1.ABC
FROM Table1, Table2
WHERE (((Table1.ABC)>[LOwer] And (Table1.ABC)<[Upper]));
When I run the above query I get:
Could not delete from specified table.
Any suggestions/help would be appreciated.
Table1:
Field: ABC (AutoNumber)
PrimaryKey: ABC
Field: Data (Text)
Values:
ABC Data
1 abc
2 def
Table2:
Field: Lower (Long Integer)
Field: Upper (Long Integer)
Values:
Lower: 1
Upper: 3
Query:
DELETE Table1.*, Table1.ABC
FROM Table1, Table2
WHERE (((Table1.ABC)>[LOwer] And (Table1.ABC)<[Upper]));
When I run the above query I get:
Could not delete from specified table.
Any suggestions/help would be appreciated.