학생 이름, 등급, 성적을 조회하는 쿼리를 작성해라.
학생 관련 테이블인 Students와 성적에 따라 등급을 매기는 Grades 테이블이 있다. 다음의 조건에 따라 조회해라.
select s.name, g.grade, s.marks
from students s
join grades g
on s.marks between g.Min_Mark and g.Max_Mark
If()
, order by
를 쿼리해주면 된당.select if(g.grade < 8, Null, s.name),
g.grade, s.marks
from students s
join grades g
on s.marks between g.Min_Mark and g.Max_Mark
order by g.grade DESC, s.name, s.marks