문제링크 : https://programmers.co.kr/learn/courses/30/lessons/59045
문제 설명
보호소에 들어올 당시에는 중성화되지 않았지만, 보호소를 나갈 당시에는 중성화된 동물의 아이디와 생물 종, 이름을
조회하는 아이디 순으로 조회하는 SQL 문
코드
1
2
3
4
5
|
SELECT a.animal_id,a.animal_type,a.name
from animal_ins a
join animal_outs b
on b.animal_id=a.animal_id
where a.sex_upon_intake like 'intact%' and (b.sex_upon_outcome like 'spayed%'or b.sex_upon_outcome like 'neutered%')
|
cs |
'MySQL' 카테고리의 다른 글
[MySQL] 프로그래머스 - 이름에 el이 들어가는 동물 찾기 (0) | 2020.06.16 |
---|---|
[MySQL] 프로그래머스 - 루시와 엘라 찾기 (0) | 2020.06.16 |
[MySQL] 프로그래머스 - 오랜 기간 보호한 동물(1) (0) | 2020.06.16 |
[MySQL] 프로그래머스 - 있었는데요 없었습니다. (0) | 2020.06.16 |
[MySQL] 프로그래머스 - 없어진 기록 찾기 (0) | 2020.06.16 |