G
Guest
I am attempting to run an UPDATE on the Assets_LineFeatures TABLE. This is
conditional based upon unmatched records in the INSPECTIONS Table. Here is
what I have so far, of course it doesn't work, but any ideas to help move me
in the right direction are much appreciated.
j
UPDATE Assets_LineFeatures
SET Assets_LineFeatures.COMMENTS = "Unable To Inspect Conduit"
LEFT JOIN INSPECTIONS ON Assets_LineFeatures.SYSASSET = INSPECTIONS.SYSASSET
WHERE (((INSPECTIONS.SYSASSET) Is Null)) AND
(((Assets_LinesFeatures.AssetName) LIKE "C*"));
conditional based upon unmatched records in the INSPECTIONS Table. Here is
what I have so far, of course it doesn't work, but any ideas to help move me
in the right direction are much appreciated.
j
UPDATE Assets_LineFeatures
SET Assets_LineFeatures.COMMENTS = "Unable To Inspect Conduit"
LEFT JOIN INSPECTIONS ON Assets_LineFeatures.SYSASSET = INSPECTIONS.SYSASSET
WHERE (((INSPECTIONS.SYSASSET) Is Null)) AND
(((Assets_LinesFeatures.AssetName) LIKE "C*"));