数据库

access三表连接 实用

2010-11-28

今天写了个三表连接程序,写法如下:select  a.*.b.bid,c.cid from table as a inner join table2 as b on a.t1=b.bid inner join table3 as c  on a.t2=c.cid where a.id="+pid;

可总是提“FROM 子句语法错误”,查了半天都是出错在关键字上,没有我的着多个错误,后来搜索access三表连接,终于查到了需要的东西,解决如下:

在Access中能够执行的sql三表连接查询语句的写法

select * from table1,table2,table3

where table1.a = table2.b and table1.c = table3.d

至此,困扰我一个小时的问题终于解决,感谢网上无偿共享者的同时,也放这里,让其他有此问题的人也不要走弯路,尽快解决,节省宝贵时间