SQL 고득점 Kit - NOT IN Level3 - 없어진 기록 찾기 - mysql

Purple·2022년 10월 26일
0

sql

목록 보기
12/22

https://school.programmers.co.kr/learn/challenges?page=1&languages=mysql&order=recent

select animal_id, name
from animal_outs
where animal_id not in (
    select animal_id
    from animal_ins
)

where <컬럼명> not in (

select id
from table

)

profile
안녕하세요.

0개의 댓글