Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Codidact Meta!

Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.

Comments on Can we get a page with the tags listed in hierarchical and then alphabetical order?

Post

Can we get a page with the tags listed in hierarchical and then alphabetical order?

+4
−0

The hierarchies of tags are awesome, but its a little hard to see the relationship. Could we get a page where the tags are displayed like this,

  • Animals
    • Antelopes
    • Bears
      • Black Bears
      • Polar Bears
    • Birds
      • Bald Eagles
      • Robins
    • Bugs
      • Cicadas
    • Deer
    • Elk

From the top-level to child, and then alphabetized inside their category. This would make it a lot easier to ensure that the tags are grouped how I want them.

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

General comments (4 comments)
General comments

Skipping 1 deleted comment.

Charlie Brumbaugh‭ wrote over 4 years ago

@aCVn see the edit

Canina‭ wrote over 4 years ago

Much clearer, thank you.

ArtOfCode‭ wrote over 4 years ago

I'll need to have a look at this one... The problem is that MySQL (well, relational databases in general) don't handle tree structures well at all. If there's a way that's been put in to do this, then I might be able to, but... I wouldn't like to get anyone's hopes up.

Canina‭ wrote over 4 years ago

@ArtOfCode I don't think such a list needs to update in real time. Tag relationships probably wouldn't be changed all that often, so to batch-generate the data or even the whole page for something like this should be workable. O'Reilly's SQL Cookbook has a recipe that comes awful close to doing what this question suggests, with MySQL syntax. "Creating a Hierarchial View of a Table". The problem statement there: "you want to return a result set that describes the hierarchy of an entire table".