我有一个无法在 Access 中运行的查询,因为它在 JOIN 操作中出现错误。
这个查询有什么问题?
SELECT *
FROM ((((((
tb_Fahrzeug AS fze
JOIN tb_Pinnummern AS tpi
ON tpi.SG = fze.Motor_SG)
JOIN tb_bauteile AS bau
ON bau.ID = tpi.Bauteil)
LEFT JOIN Fehlercodes_akt_Liste AS fpl
ON fpl.ID = bau.[FC_Plus])
LEFT JOIN Fehlercodes_akt_Liste AS fmi
ON fmi.ID = bau.[FC_Minus])
LEFT JOIN Fehlercodes_akt_Liste AS fub
ON fub.ID = bau.[FC_Unterbrechung])
LEFT JOIN Fehlercodes_akt_Liste AS fad
ON fad.ID = bau.[FC_Aderschl] )
WHERE fze.ID = [forms] ! [frm_fahrzeug] ! [id];