chartsByYearAndTag = owid.sql`select t.name as tag_name, count(ct.chartId) as chart_count, STRFTIME('%Y', c.publishedAt) as year
from chart_tags ct
left join charts c on ct.chartId = c.id
left join tags t on t.id = ct.tagId
group by ct.tagId,
year
having ct.tagId in (select ct.tagId from chart_tags ct group by ct.tagId having count(ct.chartId) > 50)
order by year, chart_count desc`