면접을 경험해 본 프로그래머들은 모두 알다시피 면접 과정에서 면접관이 온갖 이상한 질문을 할 수도 있지만 결국엔 기본 등 핵심 사항을 물어야 한다는 사실을 알고 있습니다. 특정 작업의 작업 단계 및 코드 작성 방법 등을 다루는 이 기사에서는 가장 고전적인 데이터베이스 쿼리 문제에 대해 설명합니다.
기본 테이블 구조:
teacher(tno,tname) 선생님 테이블
student(sno,sname,sage,ssex) 학생 테이블
course(cno,cname,tno) 코스 테이블
sc (sno,cno,score) 점수표
NO.1 1교시 성적이 2교시 성적보다 높은 모든 학생의 학생수를 조회합니다.
select a.sno from(select sno,score from sc where cno=1) a,(select sno,score from sc where cno=2) bwhere a.score>b.score and a.sno=b.sno
NO.2 평균 성적을 가진 학생의 학생수와 평균을 조회합니다. 60점보다 큼 성적
select a.sno as "学号", avg(a.score) as "平均成绩" from(select sno,score from sc) a group by sno having avg(a.score)>60
NO.2 학생 번호, 이름, 수강한 과목 수 및 모든 학생의 총 성적을 쿼리합니다.
select a.sno as 学号, b.sname as 姓名,count(a.cno) as 选课数, sum(a.score) as 总成绩from sc a, student bwhere a.sno = b.snogroup by a.sno, b.sname
또는:
selectstudent.sno as 学号, student.sname as 姓名, count(sc.cno) as 选课数, sum(score) as 总成绩from student left Outer join sc on student.sno = sc.snogroup by student.sno, sname
NO.3 성이 "인 교사 수를 쿼리합니다. Zhang"
selectcount(distinct(tname)) from teacher where tname like '张%‘
또는:
select tname as "姓名", count(distinct(tname)) as "人数" from teacher where tname like'张%'group by tname
NO.4 "Zhang San" 수업을 수강하지 않은 학생의 학번과 이름을 쿼리합니다.
select student.sno,student.sname from student where sno not in (select distinct(sc.sno) from sc,course,teacher where sc.cno=course.cno and teacher.tno=course.tno and teacher.tname='张三')
NO.5 "Zhang San" 수업을 수강하지 않은 학생의 학번과 이름을 쿼리합니다. 코스 1과 코스 2를 모두 공부했습니다
select sno, sname from studentwhere sno in (select sno from sc where sc.cno = 1)and sno in (select sno from sc where sc.cno = 2)
또는:
selectc.sno, c.sname from(select sno from sc where sc.cno = 1) a,(select sno from sc where sc.cno = 2) b,student cwhere a.sno = b.sno and a.sno = c.sno
또는:
select student.sno,student.sname from student,sc where student.sno=sc.sno and sc.cno=1and exists( select * from sc as sc_2 where sc_2.sno=sc.sno and sc_2.cno=2)
NO.6 "Li Si"가 가르치는 모든 코스를 공부한 모든 학생의 학생 번호와 이름을 확인하세요
select a.sno, a.sname from student a, sc bwhere a.sno = b.sno and b.cno in(select c.cno from course c, teacher d where c.tno = d.tno and d.tname = '李四')
또는:
select a.sno, a.sname from student a, sc b,(select c.cno from course c, teacher d where c.tno = d.tno and d.tname = '李四') ewhere a.sno = b.sno and b.cno = e.cno
NO.7 2번 과목과 1번 과목의 성적을 비교하여 점수가 높은 모든 학생의 학번과 이름을 확인
<p style="font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 微软雅黑, Tahoma, Arial, sans-serif; white-space: normal;">select a.sno, a.sname from student a,</p><p style="font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 微软雅黑, Tahoma, Arial, sans-serif; white-space: normal;">(select sno, score from sc where cno = 1) b,</p><p style="font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 微软雅黑, Tahoma, Arial, sans-serif; white-space: normal;">(select sno, score from sc where cno = 2) c</p><p style="font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 微软雅黑, Tahoma, Arial, sans-serif; white-space: normal;">where b.score > c.score and b.sno = c.sno and a.sno = b.sno<br/></p>
NO.8 과목 성적이 0.0 이하인 모든 학생의 학번과 이름을 쿼리 60점
select sno,sname from studentwhere sno not in (select distinct sno from sc where score > 60)
NO.9 학번이 1인 과목이 1개 이상 있는 학생을 조회합니다. 같은 과목을 공부하는 학급 친구의 학번과 이름
select distinct a.sno, a.snamefrom student a, sc bwhere a.sno <> 1 and a.sno=b.sno andb.cno in (select cno from sc where sno = 1)
or:
select s.sno,s.sname from student s,(select sc.sno from scwhere sc.cno in (select sc1.cno from sc sc1 where sc1.sno=1)and sc.sno<>1group by sc.sno)r1where r1.sno=s.sno
The 데이터베이스 관련 직무 면접에서 자주 접할 수 있는 질문들입니다. 빠르게 모아서 잘 살펴보세요!
【추천 강좌: MYSQL 학습 영상】
위 내용은 Java 인터뷰에 자주 등장하는 데이터베이스 쿼리 질문의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!