面试题:sql数据查询
Posted 正则吃饺子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题:sql数据查询相关的知识,希望对你有一定的参考价值。
前几天参加一个面试,面试公司让做一套题,sql题不是很难,但是我第一次还是写错了,回来后,重新写了下。简单记录下吧,
1.题目:
2.测试数据
select * from student ; insert into student(name,subject,score) values(‘张‘,‘语文‘,96) ; insert into student(name,subject,score) values(‘张‘,‘数学‘,62) ; insert into student(name,subject,score) values(‘张‘,‘英语‘,85) ; insert into student(name,subject,score) values(‘王‘,‘语文‘,12) ; insert into student(name,subject,score) values(‘王‘,‘英语‘,100) ; insert into student(name,subject,score) values(‘李‘,‘数学‘,10) ; insert into student(name,subject,score) values(‘赵‘,‘英语‘,88) ;
student表 ,一共三个字段 name ,subject ,score (数据类型分别为 varchar(50),varchar(50),int),测试表,比较简单。
3.我写的sql
select m.name from ( select s.name ,s.score ,DENSE_RANK() over(PARTITION by s.name order by s.score asc) as score_rank from student s ) m where m.score_rank = 1 and m.score >=60 ;
如有异议,欢迎指正。
以上是关于面试题:sql数据查询的主要内容,如果未能解决你的问题,请参考以下文章