This query is marked as a draft This query has been published by Vexations.

SQL

x
 
SELECT day, 
IF (ptrp_reviewed = 0, num, 0) AS unreviewed,
IF (ptrp_reviewed = 1, num, 0) AS reviewed,
IF (ptrp_reviewed = 2, num, 0) AS patrolled,
IF (ptrp_reviewed = 3, num, 0) AS autopatrolled
FROM (
  SELECT DATE_FORMAT(ptrp_created,'%Y-%m-%d') as day, ptrp_reviewed, COUNT(*) as num
  FROM pagetriage_page 
  WHERE ptrp_created  >  (NOW() - INTERVAL 1 WEEK)
  GROUP BY ptrp_reviewed, day
) as tmp
GROUP BY day
 
  
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...