We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7353c98 commit a483a51Copy full SHA for a483a51
프로그래머스/3/59042. 없어진 기록 찾기/README.md
@@ -16,7 +16,7 @@ Empty
16
17
### 제출 일자
18
19
-2025년 07월 13일 16:25:30
+2025년 11월 09일 22:42:15
20
21
### 문제 설명
22
프로그래머스/3/59042. 없어진 기록 찾기/없어진 기록 찾기.sql
@@ -1,7 +1,7 @@
1
--- 코드를 입력하세요
2
-SELECT o.animal_id, o.name
3
-from animal_outs as o
4
-left join animal_ins as i
5
-on o.animal_id = i.animal_id
6
-where i.animal_id is null
7
-order by o.animal_id;
+select
+out2.animal_id,
+out2.name
+from animal_outs as out2
+left join animal_ins as in2
+on in2.animal_id = out2.animal_id
+where in2.animal_id is null;
0 commit comments