I have the following SQL query, made using this question as a guide: SQL query return data from multiple tables
SELECT
Parameters.[New Parameter Number],
Parameters.[New Parameter Name],
Files.[File Names],
Groups.[Group Names]
FROM
(((FGEJunction a
INNER JOIN Parameters b ON a.idParameters = b.idParameters)
INNER JOIN Groups c ON a.idPrimaryGroup = c.idGroups
AND a.idSecondaryGroup = c.idGroups)
INNER JOIN Files d ON c.idFiles = d.idFiles)
WHERE
Parameters.[New Parameter Number]
LIKE ([Forms]![Key word search parameters]![ParameterSearchBox].[Text] & "*") OR
Parameters.[New Parameter Name]
LIKE ([Forms]![Key word search parameters]![ParameterSearchBox].[Text] & "*") OR
Files.[File Names]
LIKE ([Forms]![Key word search parameters]![ParameterSearchBox].[Text] & "*") OR
Groups.[Group Names]
LIKE ([Forms]![Key word search parameters]![ParameterSearchBox].[Text] & "*");
When I put it in MS Access and press 'Run', it simply says "Syntax error in FROM clause." It also highlights the word 'Parameters' in the first line of the FROM clause. This word is meant to refer to a table which is named 'Parameters'.
I'm new to SQL and Access and I don't know where the syntax error is.