我正在编写一个带有内部连接的 SQL 查询,因为
select * from (table1 inner join table2 on table1.city = table2.code)
inner join table3 on table3.col1 = 5 and table3.col2 = 'Hello'
这给了我错误“不支持连接表达式”。
但是,如果我像这样更改查询,则没有错误
select * from (table1 inner join table2 on table1.city = table2.code)
inner join table3 on table3.col1 = [SomeColumn] and table3.col2 = [SomeColumn]
为什么 Access 在第一次查询时给我一个错误?