美文网首页
内连接、左连接、右连接、完全连接

内连接、左连接、右连接、完全连接

作者: _昨夜雨疏风骤 | 来源:发表于2017-06-22 07:50 被阅读0次

    http://www.jb51.net/article/39432.htm

    例子:

    -------------------------------------------------

    a表     id   name     b表     id   job   parent_id

    1   张3                   1     23     1

    2   李四                 2     34     2

    3   王武                 3     34     4

    a.id同parent_id   存在关系

    --------------------------------------------------

    1) 内连接

    select   a.*,b.*   from   a   inner   join   b     on   a.id=b.parent_id

    结果是

    1   张3                   1     23     1

    2   李四                  2     34     2

    2)左连接

    select   a.*,b.*   from   a   left   join   b     on   a.id=b.parent_id

    结果是

    1   张3                   1     23     1

    2   李四                  2     34     2

    3   王武                  null

    3) 右连接

    select   a.*,b.*   from   a   right   join   b     on   a.id=b.parent_id

    结果是

    1   张3                   1     23     1

    2   李四                  2     34     2

    null                       3     34     4

    4) 完全连接

    select   a.*,b.*   from   a   full   join   b     on   a.id=b.parent_id

    结果是

    1   张3                  1     23     1

    2   李四                 2     34     2

    null                   3     34     4

    3   王武                 null

    相关文章

      网友评论

          本文标题:内连接、左连接、右连接、完全连接

          本文链接:https://www.haomeiwen.com/subject/jauxcxtx.html