In using the following Query (based on Microsoft SQL format guides, as I am new to Access, though experienced with SQL) I get an error:
SELECT SW.USGS_NO, Q.SampleDate
FROM SW_PROPERTIES SW
Inner Join (Locations L
Inner join [(]Sample_Point P [
Inner Join [(]T_TestEvents E [
Inner Join [(]T_WQData Q )]
on E.TestEvent=Q.TestEvent)]
on P.SamplePnt=E.SamplePnt)]
on L.LocationPnt=P.LocationPnt)
on SW.SiteID=L.LocationPnt
The error is simply:
"Syntax error in FROM clause."
After closing the error, the renaming, or final, 'P' in "[(]SamplePoint P [" is highlighted.
I know the links between tables are valid, and I just want the data from the highest and lowest tables. What am I missing?