diff --git "a/\352\263\240\354\226\221\354\235\264\354\231\200\352\260\234\353\212\224\353\252\207\353\247\210\353\246\254\354\236\210\354\235\204\352\271\214/sql/20221206/solution.sql" "b/\352\263\240\354\226\221\354\235\264\354\231\200\352\260\234\353\212\224\353\252\207\353\247\210\353\246\254\354\236\210\354\235\204\352\271\214/sql/20221206/solution.sql" new file mode 100644 index 00000000..9d9544e5 --- /dev/null +++ "b/\352\263\240\354\226\221\354\235\264\354\231\200\352\260\234\353\212\224\353\252\207\353\247\210\353\246\254\354\236\210\354\235\204\352\271\214/sql/20221206/solution.sql" @@ -0,0 +1,6 @@ +SELECT animal_type, COUNT(animal_type) +FROM animal_ins +WHERE animal_type = 'Cat' +OR animal_type = "Dog" +Group By animal_type +Order By animal_type;