I have a table in Access 2010 and I want to make a kind INNER JOIN query from several tables I do is the following:
SELECT *
FROM (Archivo Maestro
INNER JOIN Concepto Presupuestal
ON Archivo Maestro.ID Concepto Presupuestal = Concepto Presupuestal.ID Concepto Presupuestal)
INNER JOIN asunto_estrategico
ON Archivo Maestro.ID Asunto Estrategico = asunto_estrategico.ID Asunto Estrategico;
but I get an error saying " Syntax error ( missing operator ) in query expression of 'Archivo Maestro.ID Concepto Presupuestal = Concepto Presupuestal.ID Concepto Presupuesta' and the parenthesis not think they are the problems that are there.
ID Concepto PresupuestalAre these column names and table names with spaces? In Access, they must be[]enclosed. as[ID Concepto Presupuestal]or[Concepto Presupuestal]