Skip to content

Programmers: 보호소에서 중성화한 동물

Updated: at 오전 01:26

Table of contents

Open Table of contents

들어가며

SQL Query

SELECT o.animal_id, o.animal_type, o.name
FROM animal_outs o
    INNER JOIN animal_ins i
    ON o.animal_id = i.animal_id
WHERE (o.sex_upon_outcome LIKE "%Neutered%"
    OR o.sex_upon_outcome LIKE "%Spayed%")
    AND i.sex_upon_intake LIKE "%Intact%"
ORDER BY o.animal_id

Inner Join은 두 테이블 모두 조인 컬럼에 해당하는 값이 모두 존재한는 경우를 말한다.