mysql中两个表连接_SQL语句中两个表的连接
展开全部
⼀、外连接
1.左连接 left join 或 left outer join
SQL语句:select * from student left join score on student.Num=score.Stu_id;
2.右连接 right join 或 right outer join
SQL语句:select * from student right join score on student.Num=score.Stu_id;
3.完全外连接 full join 或 full outer join
SQL语句:select * from student full join score on student.Num=score.Stu_id;
通过上⾯这三种⽅法e68a843231313335323631343130323136353331333431336135就可以把不同的表连接到⼀起,变成⼀张⼤表,之后的查询操作就简单⼀些了。
⽽对于select * from student,score;则尽量不使⽤此语句,产⽣的结果过于繁琐。
⼆、内连接
join 或 inner join
SQL语句:select * from student inner join score on student.Num=score.Stu_id;
此时的语句就相当于:select * from student,score where student.ID=course.ID;汇编语言按键程序设计
access数据表中的一行称为favorites三、交叉连接
cross join,没有where指定查询条件的⼦句的交叉联接将产⽣两表的笛卡尔积。
vb程序设计教材pdfSQL语句:select * from student cross join score;
四、结构不同的表连接
mysql语句顺序当两表为多对多关系的时候,我们需要建⽴⼀个中间表student_score,中间表⾄少要有两表的主键。
SQL语句:select s.Name,C.Cname from student_score as sc left join student as s on s.Sno=sc.Sno left join score as c on c.Cno=sc.Cno
select C_name,grade from student left join score on student.Num=score.Stu_id where name='李五⼀';
红⾊部分即中间表,是集合两表所有内容的⼀张总表。
五、UNION操作符⽤于合并两个或多个select语句的结果集。
UNION内部的SELECT语句必须拥有相同数量的列,每个列也必须拥有相似的数据类型,每条SELECT语句中的列的顺序必须相同。
select Num from student union select Stu_id from score;
union操作符是默认查重的,如果允许重复的值,就可以使⽤union all 。对于两张结构相同的表,union也可以把他们合并成⼀张表:matlab把char数组转字符串
select * from student1 union select *from student2;
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论