Weekly task status
Check the distribution before sharing the update.
analyticsrunsql
-- Show the current task distribution
SELECT status, COUNT(*) AS total
FROM tasks
GROUP BY status ORDER BY total DESC;
2 rows · 18msLatest result
| status | total |
|---|---|
| open | 42 |
| done | 18 |
⇄ CompareLatest15:42Yesterday