TABLE WITHOUT ID
	file.link AS "§",
	chapter AS "Kap.",
	chapter-name AS "Kapitel",
	sessiontitle AS "Titel",
	ingame-date AS "Im Spiel",
	hours AS "Dauer"
FROM "Sessions"
WHERE type = "session"
SORT file.name DESC
TABLE WITHOUT ID
	sum(rows.hours) AS "Gesamte Spielzeit (h)",
	length(rows) AS "Sessions"
FROM "Sessions"
WHERE type = "session"
GROUP BY true