Skip to content

1113. Reported Posts 👎

1
2
3
4
5
6
7
8
SELECT
  extra AS report_reason,
  COUNT(DISTINCT post_id) AS report_count
FROM Actions
WHERE
  ACTION = 'report'
  AND DATEDIFF('2019-07-05', action_date) = 1
GROUP BY 1;