2.Mysql表连接

表连接

1、多表查询

1、合并结果集
    union
        合并时去除重复数据
    union all
        合并时不去除重复数据
    注意事项
        被合并的两个结果:列数、列类型必须相同
2、99连接法
    等值连接
        from a,b,c where a.cid = b.cid and b.sid = c.sid
    非等值连接
        from a,b,c where…and…>=…and…<=…
3、内连接查询
    等值连接
        from a  join b on a.cid = b.cid join c on b.sid = c.sid 
    非等值连接
        from a join b on…join c on…between…and…

2、连接查询

  • 笛卡尔积

1、两个集合相乘,不满足交换率,既 A×B ≠ B×A;

2、A集合和B集合相乘,包含了集合A中元素和集合B中元素相结合的所有的可能性,既两个集合相乘得到的新集合的元素个数是 A集合的元素个数 × B集合的元素个数;

3、保证数据准确

1、在查询时主键和外键要保持一致(表与表之间的连接点)

2、去除笛卡尔积,只保留两表间关联值相等的行数据

4、连接方式

内连接
    from table1 t1 inner join table2  t2 on t1.condition = t2.condition
外连接
    from table1 t1 left outer join table2 t2 on t1.condition = t2.condition
    from table1 t1 right outer join table2 t2 on t1.condition = t2.condition
    特征
        a、left,将左表全部数据取出,右表为空部分用null填充
        b、right,将右表全部数据取出,左表为空部分用null填充
隐式连接
    from table1,table2 where t1.condition = t2.condition

2.Mysql表连接

上一篇:MySql查询优化


下一篇:JS垂直落体回弹原理