diff --git "a/Null\354\262\230\353\246\254\355\225\230\352\270\260/sql/20221208/solution.sql" "b/Null\354\262\230\353\246\254\355\225\230\352\270\260/sql/20221208/solution.sql" new file mode 100644 index 00000000..1f6f5cf7 --- /dev/null +++ "b/Null\354\262\230\353\246\254\355\225\230\352\270\260/sql/20221208/solution.sql" @@ -0,0 +1,4 @@ +SELECT animal_type, +IFNULL(name,'No name'),sex_upon_intake +FROM animal_ins +ORDER BY animal_id ASC;