select * from a inner join b on a.bid=b.id inner jion c on a.cid=c.id
select * from a,b,c where a.bid=b.id and a.cid=c.id
如果你是完成两个表的关联,那直接查询就可以了;
如果你要完成一个表同时查询,就可以使用给表起别名的办法。
两个不同的表的关联查询如下:
select *
from a,b
where 条件
同一个表的关联查询:
select *
from a A,
where a.*=A.*