SQL--'xxx'선생님 수업 을 배 운 적 이 없 는 학생 을 조회 하여 표시(학 번,이름)(with 자구 사용)
915 단어 SQL
SELECT * FROM student s;
SELECT * FROM teacher t;
SELECT * FROM course c;
SELECT * FROM student_core sc;
--1. “xxx” , ( 、 )
----a. ( with )
with s_t as(
select sc.student_no stu_no, t.teacher_name t_name
from student_core sc, course c,teacher t
where sc.course_no = c.course_no
and c.teacher_no = t.teacher_no)
----b.
/*
select s.student_no s_no from student s ,s_t where s.student_no=s_t.stu_no and s_t.t_name='xxx' group by s.student_no
*/
----c.
select s.student_no, s.student_name
from student s
where s.student_no not in (select s.student_no s_no
from student s, s_t
where s.student_no = s_t.stu_no
and s_t.t_name = 'xxx'
group by s.student_no);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Redash를 사용할 때 몰랐던 SQL을 쓰는 법을 배웠습니다.최근 redash에서 sql을 쓸 기회가 많고, 이런 쓰는 방법이 있었는지와 sql에 대해 공부를 다시하고 있기 때문에 배운 것을 여기에 씁니다. Redash란? 월별로 데이터를 표시하고 싶습니다 주별로 데이터를 표...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.