Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Null처리하기/sql/20221208/solution.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SELECT animal_type,
IFNULL(name,'No name'),sex_upon_intake
FROM animal_ins
ORDER BY animal_id ASC;