造梦西游3火眼金睛削弱:ACCESS三个表连接代码怎么不行?

来源:百度文库 编辑:高校问答 时间:2024/05/09 08:33:19
条件
表1 表2 表3
表1.a=表2.b
表1.c=表3.d
用SQL2000时这样写可以:
select * from 表1 join 表2 on 表1.a=表2.b join 表3 on 表1.c=表3.d

现在换成ACCESS,这么写就不行了?为什么?

试试这样吧
select * from 表1,表2,... where 表2.a=表1.b and ......