美文网首页
数据库链接属性

数据库链接属性

作者: 无敌帅帅头 | 来源:发表于2019-03-11 13:12 被阅读0次

    内链接:select * from t_student t inner join t_hours s on id = sid

                   等价于select * from t_student t ,t_hours s where id = sid

    左连接:select * from t_student t left join t_hours s on id = sid

    右连接 select * from t_student t right join t_hours s on id = sid

    全连接 select * from t_student t full join t_hours s on id = sid

    相关文章

      网友评论

          本文标题:数据库链接属性

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