C
c8tz
Below is my SQL Code - Confirmation Entries such that if PalmHeight1 =
PalmHeight2 then Delete that entry in the second table.
DELETE PalmHeight.Height, PalmHeightSecond.*, PalmHeight.RDate
FROM PalmHeight INNER JOIN PalmHeightSecond ON (PalmHeight.Palm =
PalmHeightSecond.Palm) AND (PalmHeight.Plot = PalmHeightSecond.Plot)
AND (PalmHeight.Trial = PalmHeightSecond.Trial)
WHERE (((PalmHeight.Height)=[PalmHeightSecond].[Height]) AND
((PalmHeight.RDate)=[PalmHeightSecond].[RDate]));
Am not able to delete.
Trial, Palm, Plot and Date is related.
Is this where the problem is? Such that there are too many relations
and am only dealing with one entry item (Palm Height).
If so, how can I split this query and still get the same result.
Thanks in advance,
Lost!
PalmHeight2 then Delete that entry in the second table.
DELETE PalmHeight.Height, PalmHeightSecond.*, PalmHeight.RDate
FROM PalmHeight INNER JOIN PalmHeightSecond ON (PalmHeight.Palm =
PalmHeightSecond.Palm) AND (PalmHeight.Plot = PalmHeightSecond.Plot)
AND (PalmHeight.Trial = PalmHeightSecond.Trial)
WHERE (((PalmHeight.Height)=[PalmHeightSecond].[Height]) AND
((PalmHeight.RDate)=[PalmHeightSecond].[RDate]));
Am not able to delete.
Trial, Palm, Plot and Date is related.
Is this where the problem is? Such that there are too many relations
and am only dealing with one entry item (Palm Height).
If so, how can I split this query and still get the same result.
Thanks in advance,
Lost!