I'm new to Access. I'm trying to run this SQL query:
Code:
SELECT
Title.InnerText AS SystemID,
RamSerial.InnerText AS RamSerial,
RamTitle.InnerText AS RamTitle,
RamModuleSize.InnerText AS RamModuleSize,
RamPackage.InnerText AS RamPackage,
RamFeature.InnerText AS RamFeature,
RamSpecs.InnerText AS RamSpecs,
Rating.InnerText AS Rating,
Price.InnerText AS Price,
RamSerial.Url
FROM
Title LEFT JOIN TitleInRam ON Title.InnerText = TitleInRam.InnerText
LEFT JOIN RamSerial ON TitleInRam.Url = RamSerial.Url
LEFT JOIN RamTitle ON TitleInRam.Url = RamTitle.Url
LEFT JOIN RamModuleSize ON TitleInRam.Url = RamModuleSize.Url
LEFT JOIN RamPackage ON TitleInRam.Url = RamPackage.Url
LEFT JOIN RamFeature ON TitleInRam.Url = RamFeature.Url
LEFT JOIN RamSpecs ON TitleInRam.Url = RamSpecs.Url
LEFT JOIN Rating ON TitleInRam.Url = Rating.Url
LEFT JOIN Price ON TitleInRam.Url = Price.Url
But I get the error: "Syntax error (missing operator) in query expression 'Title.InnerText = TitleInRam.InnerText...'". The actual error message shows my query from "Title.InnerText = TitleInRam.InnerText" to the end.