📜Quest

걷기반 Quest 9)아프면 안됩니다! 항상 건강 챙기세요!

highcat 2024. 11. 19. 17:00

 

의사가 있으면 당연히 의사에게 진료받는 환자가 있겠죠? 아래와 같은 patients(환자) 테이블이 있습니다.

 

 

 

 

 

 

 

 

문제


 

 

34. patients 테이블에서 각 성별(gender)에 따른 환자 수를 계산하는 쿼리를 작성해주세요!

select gender,

               count(*) patients

from patients

group by 1

 

 

 


 

35. patients 테이블에서 현재 나이가 40세 이상인 환자들의 수를 계산하는 쿼리를 작성해주세요!

 

select count(*) patients

from patients

where birth_date<=date_sub(curdate(),interval 40 year)

 

 


 

36. patients 테이블에서 마지막 방문 날짜(last_visit_date)가 1년 이상 된 환자들을 선택하는 쿼리를 작성해주세요!

 

 

select id,name,birth_date,gender,last_visit_date

from patients

where last_visit_date<=date_sub(curdate(),interval 1 year)

 

 

 


 

37. patients 테이블에서 생년월일이 1980년대인 환자들의 수를 계산하는 쿼리를 작성해주세요!

 

select count(*) '1980~1989'

from patients

where birth_date between '1980-01-01' and '1989-12-31'