본문 바로가기
데이터 베이스/MySQL

MYSQL Groupby & having 예제 문제 6

by 인생여희 2016. 12. 8.
반응형



-- student 테이블에 있는 학생의 입학년도별 그룹을 출력하라 

-- 


select substring(stu_no,1,4) from student GROUP BY substring(stu_no,1,4);




select substring(stu_no,1,4),stu_name from student GROUP BY substring(stu_no,1,4),stu_name;



-- 각 입학년도별 총 학생 수를 출력하라 


select substring(stu_no,1,4),count(stu_name) from student GROUP BY substring(stu_no,1,4);




-- 등록한 학생에 대하여 학번, 등록횟수 , 각 학생이 받은 장학금의 전체 합을 출력하라 


select stu_no, count(fee_year), sum(jang_total) from fee group by stu_no;

 

-- 박정인 학생에 대하여 학번, 등록한 횟수의 수를 출력하라 


select stu_no, count(fee_year) from fee where stu_no =

(select stu_no  from student WHERE stu_name = '박정인'); 




-- @ 2개 이상의 열에 대한 그룹화 

-- 

-- 학년별 , 주야인원을 출력하라 . 단 , 출력순서는 학년별 오름차순, 주야 오름차순이다. 


select grade,juya,count(juya) from student GROUP BY grade,juya;



-- student 테이블에서 학년, 반, 주야구분이 서로 다른 모든 조합을 인원수로 출력하라 



select grade,class,juya, count(*) from student GROUP BY grade,class,juya; 





-- fee테이블 에서 각 학생별로 대학 재학시 총 납입한 금액과 등록금 최대값, 가장 적게 받은 장학금, 등록 횟수를 출력하라 .


select stu_no, sum(fee_pay), max(fee_total),min(jang_total),count(fee_year) from fee GROUP BY stu_no;  


-- 등록한 학생에 대하여ㅏ 학번, 이름, 납입금의 총액을 출력하라. 

-- 

    select s.stu_no, s.stu_name,sum(f.fee_pay)

    from student s, fee f

    where s.stu_no=f.stu_no

    group by s.stu_no,s.stu_name;


-- @ 수식의 그룹화 

-- 

-- 

-- 등록 연도에 대하여 등록된 수를 출력하라 


select fee_year,count(fee_year) from fee group by fee_year;



-- 동아리 가입번호를 기초로 하여 학생들을 그룹화하라.(???????????????????)

-- 이 때 그룹1은 가입번호 1부터 3까지 이며, 그룹2는 가입번호 4부터 6까지의 순서로 3명씩을 한 그룹으로 그룹화한다.

-- 그리고 각 그룹에 대하여 학생의 수와 가장 높은 학번을 출력한다. 



select ceil(cir_num/3),count(*),max(stu_no)

from circle

group by ceil(cir_num/3);



-- 서로 다른 장학코드를 그룹화하고 인원수를 출력하라. 

 

 select jang_code,count(*) from fee GROUP BY jang_code;

 

 

 

 select ifnull(jang_code,null),count(*) from fee GROUP BY jang_code;

 

 

 

-- @ having 절의 소개 

-- 

-- 세번이상 등록한 학생의 학번과 등록횟수를 출력하라. 


select stu_no, count(*) 

from fee

group by stu_no

having count(fee_year) > 3;



-- 2006년에 등록한 학생의 학번과 등록 횟수를 출력하라. 


-- (x)

select stu_no, count(*) 

from fee

group by stu_no

having fee_year =2006;


-- (o)

select stu_no, count(*) 

from fee

group by stu_no,fee_year

having fee_year =2006;




-- 재학중에 납부한 등록금의 전체 납부금액이 5,000,000원 이상인 각 학생에 대하여 출력하라. 


select stu_no 

from fee

group by stu_no

having sum(fee_pay) >= 5000000;



-- 여학생이면서 재학중 납부한 전체등록금이 2,000,000원 이상인 학생의 학번과 등록금의 총액을 출력하라. 


select f.stu_no, s.stu_name,sum(f.fee_pay) 

from fee f, student s

where f.stu_no=s.stu_no

and substring(s.id_num,8,1)=2

group by f.stu_no

having sum(f.fee_pay) > 2000000;



-- 재학중 납부한 등록금 총액이 가장 많은 각 학생에 대한 학번과 등록금의 총액을 출력하라 

-- (만약 등록금 총액이 모두 같거나 모두 많다면, 이 질의어는 많은 학생을 반환할것이다. )



select stu_no,sum(fee_pay) 

from fee

group by stu_no

having sum(fee_pay)

>= all (select sum(fee_pay)  

from fee

group by stu_no)




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
USE HAKSA;
 
 
-- student 테이블에 있는 학생의 입학년도별 그룹을 출력하라 
-- 
 
 
select substring(stu_no,1,4from student GROUP BY substring(stu_no,1,4);
 
 
 
select substring(stu_no,1,4),stu_name from student GROUP BY substring(stu_no,1,4),stu_name;
 
 
-- 각 입학년도별 총 학생 수를 출력하라 
 
select substring(stu_no,1,4),count(stu_name) from student GROUP BY substring(stu_no,1,4);
 
 
 
-- 등록한 학생에 대하여 학번, 등록횟수 , 각 학생이 받은 장학금의 전체 합을 출력하라 
 
select stu_no, count(fee_year), sum(jang_total) from fee group by stu_no;
 
-- 박정인 학생에 대하여 학번, 등록한 횟수의 수를 출력하라 
 
select stu_no, count(fee_year) from fee where stu_no =
(select stu_no  from student WHERE stu_name = '박정인'); 
 
 
 
-- @ 2개 이상의 열에 대한 그룹화 
-- 
-- 학년별 , 주야인원을 출력하라 . 단 , 출력순서는 학년별 오름차순, 주야 오름차순이다. 
 
select grade,juya,count(juya) from student GROUP BY grade,juya;
 
 
-- student 테이블에서 학년, 반, 주야구분이 서로 다른 모든 조합을 인원수로 출력하라 
 
 
select grade,class,juya, count(*from student GROUP BY grade,class,juya; 
 
 
 
 
-- fee테이블 에서 각 학생별로 대학 재학시 총 납입한 금액과 등록금 최대값, 가장 적게 받은 장학금, 등록 횟수를 출력하라 .
 
select stu_no, sum(fee_pay), max(fee_total),min(jang_total),count(fee_year) from fee GROUP BY stu_no;  
 
-- 등록한 학생에 대하여ㅏ 학번, 이름, 납입금의 총액을 출력하라. 
-- 
    
    select s.stu_no, s.stu_name,sum(f.fee_pay)
    from student s, fee f
    where s.stu_no=f.stu_no
    group by s.stu_no,s.stu_name;
 
-- @ 수식의 그룹화 
-- 
-- 
-- 등록 연도에 대하여 등록된 수를 출력하라 
 
select fee_year,count(fee_year) from fee group by fee_year;
 
 
-- 동아리 가입번호를 기초로 하여 학생들을 그룹화하라.(???????????????????)
-- 이 때 그룹1은 가입번호 1부터 3까지 이며, 그룹2는 가입번호 4부터 6까지의 순서로 3명씩을 한 그룹으로 그룹화한다.
-- 그리고 각 그룹에 대하여 학생의 수와 가장 높은 학번을 출력한다. 
 
 
select ceil(cir_num/3),count(*),max(stu_no)
from circle
group by ceil(cir_num/3);
 
 
-- 서로 다른 장학코드를 그룹화하고 인원수를 출력하라. 
 
 select jang_code,count(*from fee GROUP BY jang_code;
 
 
 
 select ifnull(jang_code,null),count(*from fee GROUP BY jang_code;
 
 
 
-- @ having 절의 소개 
-- 
-- 세번이상 등록한 학생의 학번과 등록횟수를 출력하라. 
 
select stu_no, count(*
from fee
group by stu_no
having count(fee_year) > 3;
 
 
-- 2006년에 등록한 학생의 학번과 등록 횟수를 출력하라. 
 
-- (x)
select stu_no, count(*
from fee
group by stu_no
having fee_year =2006;
 
-- (o)
select stu_no, count(*
from fee
group by stu_no,fee_year
having fee_year =2006;
 
 
 
-- 재학중에 납부한 등록금의 전체 납부금액이 5,000,000원 이상인 각 학생에 대하여 출력하라. 
 
select stu_no 
from fee
group by stu_no
having sum(fee_pay) >= 5000000;
 
 
-- 여학생이면서 재학중 납부한 전체등록금이 2,000,000원 이상인 학생의 학번과 등록금의 총액을 출력하라. 
 
select f.stu_no, s.stu_name,sum(f.fee_pay) 
from fee f, student s
where f.stu_no=s.stu_no
and substring(s.id_num,8,1)=2
group by f.stu_no
having sum(f.fee_pay) > 2000000;
 
 
-- 재학중 납부한 등록금 총액이 가장 많은 각 학생에 대한 학번과 등록금의 총액을 출력하라 
-- (만약 등록금 총액이 모두 같거나 모두 많다면, 이 질의어는 많은 학생을 반환할것이다. )
 
 
select stu_no,sum(fee_pay) 
from fee
group by stu_no
having sum(fee_pay)
>= all (select sum(fee_pay)  
from fee
group by stu_no)
 
 
cs



반응형

댓글