viewof trends = await client.table(
`WITH top_english AS (
SELECT INSTNM, AWLEVEL, Discipline, sum(degrees) as t2 FROM "degrees" NATURAL JOIN "chars" WHERE AWLEVEL IN (5) AND year > 2015 AND DISCIPLINE = 'English Language and Literature' GROUP BY ALL ORDER BY t2 DESC LIMIT 10)
SELECT INSTNM, AWLEVEL, Discipline, year, sum(degrees.degrees) AS "majors" FROM top_english NATURAL JOIN degrees WHERE AWLEVEL=5 GROUP BY ALL ORDER BY year ASC
`
)