Skip to content

Commit aba83e2

Browse files
authored
solve 없어진 기록 찾기 with sql
1 parent 36dcf64 commit aba83e2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

없어진 기록 찾기/solution.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
SELECT outs.animal_id, outs.name
2+
from animal_outs as outs
3+
left outer join animal_ins as ins
4+
on ins.animal_id = outs.animal_id
5+
where ins.animal_id is null;

0 commit comments

Comments
 (0)