sql语句:一个表和另外两个表的关联语句?

2024年11月18日 10:45
有1个网友回答
网友(1):

  1. select * from a inner join b on a.bid=b.id inner jion c on a.cid=c.id

  2. select * from a,b,c where a.bid=b.id and a.cid=c.id

  1. 如果你是完成两个表的关联,那直接查询就可以了;

  2. 如果你要完成一个表同时查询,就可以使用给表起别名的办法。

  3. 两个不同的表的关联查询如下:

    select * 

    from a,b

    where 条件

  4. 同一个表的关联查询:

    select *

    from a A,

    where a.*=A.*