We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a483a51 commit acc7d44Copy full SHA for acc7d44
프로그래머스/3/59043. 있었는데요 없었습니다/README.md
@@ -16,7 +16,7 @@ Empty
16
17
### 제출 일자
18
19
-2025년 07월 10일 08:58:36
+2025년 11월 10일 10:10:29
20
21
### 문제 설명
22
프로그래머스/3/59043. 있었는데요 없었습니다/있었는데요 없었습니다.sql
@@ -1,7 +1,8 @@
1
--- 코드를 입력하세요
2
-SELECT i.animal_id, i.name
3
-from animal_ins as i
4
-join animal_outs as o
5
-on i.animal_id = o.animal_id
6
-where i.datetime > o.datetime
+select
+o.animal_id,
+o.name
+from animal_outs as o
+join animal_ins as i
+on o.animal_id = i.animal_id
7
+where o.datetime < i.datetime
8
order by i.datetime;
0 commit comments