[SQL] MySQL 정리
시험 대상자 관리
select li.lec_id
,li.lec_name
,te.test_name
,concat(DATE_FORMAT(te.test_start, '%Y.%m.%d'),'-',DATE_FORMAT(te.test_end, '%Y.%m.%d')) as dduedate
,case when te.test_end < now() then '시험종료'
else '시험중'
end state
,ifnull(llc.cnt,0) as cnt
,ifnull(llt.cnt,0) as lltcnt
,(ifnull(llc.cnt,0) - ifnull(llt.cnt,0)) as nocnt
-- ,(cnt - lltcnt) as nocnt
from tb_test te
inner join tb_lec_info li on te.lec_id = li.lec_id
left outer join (
select lc.lec_id, count(*) as cnt
from tb_lecstd_info lc
group by lc.lec_id
) llc on li.lec_id = llc.lec_id
left outer join (
select tu.test_id, count(*) as cnt
from tb_test_user tu
group by tu.test_id
) llt on te.test_id = llt.test_id;
쓰여진 문법
- 1. case when ~
else ~ end
- 2. ifnull
- 3. left outer join
- 4. alias(참고)
- 주의사항
변수명은 선언된 곳에서는 바로 못쓰고 한번 감싼 부분 위에서 사용할수 있다.(상위 select 부분)
Author And Source
이 문제에 관하여([SQL] MySQL 정리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jinheesung/SQL-MySQL-정리저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)