From d6cad6c62b1869abd639ef1430f13b83d2a28f64 Mon Sep 17 00:00:00 2001 From: usktea Date: Thu, 8 Dec 2022 19:20:58 +0900 Subject: [PATCH] =?UTF-8?q?20221208-Null=EC=B2=98=EB=A6=AC=ED=95=98?= =?UTF-8?q?=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SELECT ~ IFNULL(--,'--') FROM table ORDER By column ASC; --- .../sql/20221208/solution.sql" | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 "Null\354\262\230\353\246\254\355\225\230\352\270\260/sql/20221208/solution.sql" 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;