3 lines
124 B
SQL
3 lines
124 B
SQL
SELECT year(created_at) AS year, count() AS stars FROM github_events WHERE type = 'WatchEvent' GROUP BY year ORDER BY year
|
|
|