Skip to content

Commit fed0822

Browse files
authored
Create 1113-reported-posts.sql
1 parent 1a2f1f3 commit fed0822

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

1113-reported-posts.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Write your MySQL query statement below
2+
select
3+
extra as report_reason
4+
,count(distinct post_id) as report_count
5+
from Actions
6+
where action_date = '2019-07-04'
7+
and action = 'report'
8+
group by extra;

0 commit comments

Comments
 (0)