E
Eskimo
I have
tblGPSData
-------------
ID(Autonumber, PK)
TXDate(Date)
TXTime(Time)
PTT(Number)
FixNo(Number)
FixStatus(Text)
FixDate(Date)
FixTime(Time)
Longitude(Number)
Latitude(Number)
Query1
--------
SELECT GPSData.ID, GPSData.TXDate, GPSData.TXTime, GPSData.PTT,
GPSData.FixNo, GPSData.FixStatus, GPSData.FixDate, GPSData.FixTime,
GPSData.Longitude, GPSData.Latitude
FROM GPSData
WHERE (((GPSData.PTT)=18722) AND ((GPSData.FixNo)=1) AND
((GPSData.FixStatus)="Bad"));
Query2
--------
DELETE GPSData.*
FROM GPSData INNER JOIN Query1 ON (GPSData.PTT = Query1.PTT) AND
(GPSData.TXDate = Query1.TXDate) AND (GPSData.TXTime = Query1.TXTime);
Why does the Delete query not work? I get a message saying "cannot delete
from Specified Tables"
I am stumped on this. Could not find anything under search.
Eskimo
tblGPSData
-------------
ID(Autonumber, PK)
TXDate(Date)
TXTime(Time)
PTT(Number)
FixNo(Number)
FixStatus(Text)
FixDate(Date)
FixTime(Time)
Longitude(Number)
Latitude(Number)
Query1
--------
SELECT GPSData.ID, GPSData.TXDate, GPSData.TXTime, GPSData.PTT,
GPSData.FixNo, GPSData.FixStatus, GPSData.FixDate, GPSData.FixTime,
GPSData.Longitude, GPSData.Latitude
FROM GPSData
WHERE (((GPSData.PTT)=18722) AND ((GPSData.FixNo)=1) AND
((GPSData.FixStatus)="Bad"));
Query2
--------
DELETE GPSData.*
FROM GPSData INNER JOIN Query1 ON (GPSData.PTT = Query1.PTT) AND
(GPSData.TXDate = Query1.TXDate) AND (GPSData.TXTime = Query1.TXTime);
Why does the Delete query not work? I get a message saying "cannot delete
from Specified Tables"
I am stumped on this. Could not find anything under search.
Eskimo