首页 > 其他 > 详细

inner join 多表查询

时间:2017-09-22 22:19:22      阅读:332      评论:0      收藏:0      [点我收藏+]

三表以及三表以上联合查询:

select table1.ziduan1,table2.ziduan,2,table3,ziduan3
from table1 inner join table2 
on table1.field1 = table2.field1 
inner join table3 
on table1.field1 = table3.field1

 举例: 

select clFile.FILEPATH,clPerson.personcode,cailiao.clcode 
    from clFile inner join clPerson 
    on clFile.PGUID = clPerson.MGUID
    inner join cailiao 
    on clPerson.MGUID = cailiao.clGuid";

俩表联合查询:

select * FROM 
    表1 INNER JOIN 表2 
    ON 表1.字段号=表2.字段号

 举例:

select * from CaiLiao inner 
    join clCode 
    on CaiLiao.clCode=clCode.code 
    where CaiLiao.clGUID 
    in (select mGUID from clPerson where pcode = ‘123‘ )                  

  

inner join 多表查询

原文:http://www.cnblogs.com/Sophias/p/7577226.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!