mySQL 的 2个分类

2018-06-17 23:35:13来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1、将如下表中的每门成绩都大于80分的人名?

张三 语文 81
张三 数学 75
李四 语文 76
李四 数学 90
王五 语文 81
王五 数学 100
王五 英语 90

 

select * from tb_stu2;
select distinct stu2_name from tb_stu2 where stu2_name not in
(select distinct stu2_name from tb_stu2 where stu2_score<80);

2、输出老爹对应的大儿子的信息?

 

create table student(
stu_id int,
stu_age int,
stu_name varchar(30),
stu_f int
);
create table father(
c_id int,
c_master varchar(30)
);
insert into student values(1,28,'王思聪',1);
insert into student values(2,20,'王五',1);
insert into student values(3,24,'李嘉',2);
insert into student values(4,25,'李泽',2);

insert into father values(1,'王健林');
insert into father values(2,'李嘉诚');


#先建立父亲对儿子的一对多的关系,然后选出各自的大儿子显示:
select * from student join father on student.stu_f=father.c_id where (student.stu_age=(select max(stu_age) from student where stu_f=1))
or (student.stu_age=(select max(stu_age) from student where stu_f=2)) ;

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:MySQL数据库优化的八种方式(经典必看)

下一篇:sIllegal mix of collations (utf8_general_ci,IMPLICIT) and (u