连表联查
union:结果集进行合并(纵向合并) 格式: 查询语句 union 查询语句 注意: 查询列数必须相同 字段为第一个sql语句的字段 union默认去重 union all不去重 left join(以左表为基准关联右表中的数据) 格式: select * from 左表 left join 右表 on 关联条件; 注意: 左表匹配不到右表,以null不全 右表匹配不到左表,不显示 right join(以右表为基准关联左表中的数据) 格式: select * from 右表 left join 左表 on 关联条件; 注意: 左表匹配不到右表,不显示 右表匹配不到左表,以null不全 inner join(求两张表的交集) 格式: select * from 右表 inner join 左表 on 关联条件; 注意: 关联条件可写可不写 如果不写可以写为select * from 表1,表2 where 子句;