查询多个表:
select * from bonlivraison,categorie,fourniture where bonlivraison.id_bl=fourniture.id_bl and fourniture.id_categorie=categorie.id_categorie
结果:219行
查询单个表:
select * from fourniture
结果:263行
我希望第一个查询能够获得263行
答案 0 :(得分:2)
使用左连接并从表fourniture
select * from fourniture
left join categorie on fourniture.id_categorie=categorie.id_categorie
left join bonlivraison on bonlivraison.id_bl=fourniture.id_bl
您的查询仅显示来自表bonlivraison的记录,其中包含其他表中的相关条目。