数据库中内连接、外连接、全连接

来源:未知 责任编辑:责任编辑 发表时间:2015-09-09 15:36 点击:

数据库中内连接、外连接、全连接
 
内连接:把两个表中数据对应的数据查出来 
外连接:以某个表为基础把对应数据查出来(全连接是以多个表为基础) 
 
student表 
no name 
1 a 
2 b 
3 c 
4 d 
 
grade表 
no grade 
1 90 
2 98 
3 95 
  www.2cto.com  
内连接 inner join(查找条件中对应的数据,no4没有数据不列出来) 
语法:select * from student inner join grade on student.no = grade.no 
结果 
student.no name grade.no grade 
1 a 1 90 
2 b 2 98 
3 c 3 95 
 
左连接(左表中所有数据,右表中对应数据,即左边一定有数据,右边不一定有) 
语法:select * from student left join grade on student.no = grade.no 
结果: 
student.no name grade.no grade 
1 a 1 90 
2 b 2 98 
3 c 3 95 
4 d 
 
右连接(右表中所有数据,左表中对应数据,即右边一定有,左边不一定有) 
语法:select * from student right join grade on student.no = grade.no 
结果: 
student.no name grade.no grade 
1 a 1 90 
2 b 2 98 
3 c 3 95 
全外连接(表中数据=内连接+左边缺失数据+右边缺失数据)
  www.2cto.com  
语法:select * from student full join grade on student.no = grade.no 
结果: 
no name grade 
1 a 90 
2 b 98 
3 c 95 
4 d 
1 a 90 
2 b 98 
3 c 95 
 
交叉连接 (没有where字句时结果为笛卡尔积) 一般不用。
 
注:access 中不能直接使用full join ,需要使用union all 将左连接和右连接合并后才可以
    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Request.ServerVariables 参数大全
    • 查看sql修改痕迹(SQL Change Tracking on Table)
    • 写给MongoDB开发者的50条建议Tip1
    • Percolator与分布式事务思考(二)
    • App数据层设计及云存储使用指南
    • PostgreSQL启动过程中的那些事三:加载GUC参数
    • SQL Server、Oracle、db2所提供的简装版(Express)比较
    • PostgreSQL 安装问题
    • 【自主研发-贡献给SQL Server人员】索引诊断与优化软件使用说明
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1