我在 Microsoft Access 中有两个表
表格1
id_customer,id_city,city,qty
123,045,New York,45
表_2
id,name
12345,Audy
54321,Steve
在 Ms. Access 中查询
SELECT * FROM table_1 RIGHT JOIN table_2 ON table_1.id_customer&MID(table_1.id_city,2,2)=table_2.id;
错误 :
JOIN expression not supported
请更正我的查询并在此之前感谢