zoukankan      html  css  js  c++  java
  • LeetCode

          Description:Write a SQL query for a report that provides the following information for  each person in the Person table, regardless if there is an address for each  of those people:     

        第一次刷SQL题目感觉还是不错的。这个题目大概是说把第一张表和第二张表连接起来。而且第二张表中的Person的Address中的属性可能为NULL。这明显就是个左外链接。

       

    # Write your MySQL query statement below
    SELECT FirstName ,LastName, City, State 
    FROM Person LEFT OUTER JOIN Address ON (Person.PersonId=Address.PersonId);
    

     这里需要说一下左外链接和右外链接的区别。

          左外链接是列出左边关系的所有元组,右外链接是列出右边关系的所有元组。下面举个例子。
          PersonName(id,name)
          数据:(1,张三)(2,李四)(3,王五)
          PersonPosition(id,position)
          数据:(1,学生)(2,老师)(4,校长)

          左连接的结果:

          select PersonName.*,PersonPosition.* from PersonName left join PersonPosition on PersonName.id=PersonPosition.id;
          1 张三 1    学生
          2 李四 2    老师
          3 王五 NULL NULL

          右外链接的结果:

          select PersonName.*,PersonPosition.* from PersonName right join PersonPosition on PersonName.id=PersonPosition.id;

          1    张三 1 学生
          2    李四 2 老师
          NULL NULL 4 校长

  • 相关阅读:
    申论复习路线
    项目管理小拾
    物理隔离卡,双网通用安装
    生成css sprites
    图片压缩
    css预编译 sass
    小杂记
    遮罩层和弹出层(居中)
    布局之并列登高自适应高度解决方案
    slide逻辑
  • 原文地址:https://www.cnblogs.com/wxisme/p/4433576.html
Copyright © 2011-2022 走看看