Skip to content

Commit 6170958

Browse files
committed
[level 3] Title: 없어진 기록 찾기, Time: 0.00 ms, Memory: 0.0 MB -BaekjoonHub
1 parent b022faa commit 6170958

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

프로그래머스/3/59042. 없어진 기록 찾기/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [level 3] 없어진 기록 찾기 - 59042
22

3-
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/59042#qna)
3+
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/59042)
44

55
### 성능 요약
66

@@ -16,7 +16,7 @@ Empty
1616

1717
### 제출 일자
1818

19-
2024년 10월 31일 20:53:46
19+
2026년 01월 04일 19:29:26
2020

2121
### 문제 설명
2222

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- 코드를 입력하세요
2-
(select ANIMAL_ID, NAME
3-
from ANIMAL_OUTS
4-
except
5-
select ANIMAL_ID, NAME
6-
from ANIMAL_INS)
2+
SELECT O.ANIMAL_ID, O.NAME
3+
FROM ANIMAL_OUTS O
4+
LEFT OUTER JOIN ANIMAL_INS I
5+
ON O.ANIMAL_ID = I.ANIMAL_ID
6+
WHERE I.ANIMAL_ID IS NULL;

0 commit comments

Comments
 (0)