We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c244929 commit 16c87e9Copy full SHA for 16c87e9
โsql/#10.sql
@@ -0,0 +1,2 @@
1
+-- ์ฝ๋๋ฅผ ์ ๋ ฅํ์ธ์
2
+SELECT count(distinct name) from animal_ins where name is not null
โsql/#11.sql
+SELECT name, count(name) from animal_ins where name is not null group by name having count(name) > 1 order by name
โsql/#12.sql
@@ -0,0 +1,5 @@
+SELECT hour(datetime) as hour, count(*)
+from animal_outs
3
+group by hour
4
+having hour between 9 and 19
5
+order by hour asc
โsql/#9.sql
+SELECT datetime from animal_ins order by datetime limit 1
0 commit comments