2 lines
131 B
SQL
2 lines
131 B
SQL
SELECT dayofweek(created_at) AS day, count() AS stars FROM github_events WHERE event_type = 'WatchEvent' GROUP BY day ORDER BY day
|