MySQL 进阶 关于连表 左右连表: join 上下连表: union #自动去重 (当两张表里的数据,有重复的才会自动去重) union all #不去重 #上下连表示例: select sid,sname from sname union select tid,tname from teacher select sid,sname from student UNION ALL select sid,sname from student 视图 (不常用,开发过程中不长用,在开发语句中写,不要…