#[Categorized lists of tags](http://data.stackexchange.com/codereview/query/330823/collections-of-categorized-tags) I took the top 500 tags and (with the help of a few fellow contributors) made some loosely categorized `CREATE TABLE` statements that you can drop into your SEDE queries and `JOIN` to the `Tags` table. ###Example usage: CREATE TABLE #DatabaseTags (Name VARCHAR(100)); GO INSERT INTO #DatabaseTags VALUES [...] GO -- Top scored database posts SELECT [Post Link] = Posts.Id , [Score] = Posts.Score FROM Posts INNER JOIN PostTags ON PostTags.PostId = PostsTags.TagId INNER JOIN Tags ON PostTags.TagId = Tags.Id INNER JOIN #DatabaseTags ON #DatabaseTags.Name = Tags.Name ORDER BY Posts.Score DESC; Of course, feel welcome to inspire your own lists from this, and point out any errors or improvements that could be made in chat :)