Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3667206
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T01:58:20+00:00 2026-05-19T01:58:20+00:00

I’m trying to implement a simple tagging system (messing around in php)… I use

  • 0

I’m trying to implement a simple tagging system (messing around in php)…

I use the following sql command to get the required thread, its author and the tags associated with it:

$thread = select_Query("SELECT thread.title, thread.id as t_id,
                         thread.content, author.username, author.id as a_id,
                         GROUP_CONCAT(DISTINCT tags.name ORDER BY tags.name DESC SEPARATOR ',') AS tags
                         FROM thread JOIN thread_tags ON thread.id = thread_tags.thread_id
                         JOIN tags ON thread_tags.tag_id = tags.id
                         INNER JOIN author on author.id = thread.author_id
                         WHERE thread.id = $id", $link);

As you can see, I am using GROUP_CONCAT. This works fine, however when I do this, the tags all appear in one variable and I know I can use $pieces = explode(",", $thread['tags]);
However is there another way of doing this? I am asking this because tags are easy to separate however if it was something more complex (e.g. something that contain the delimiter ,).

My database schema is as follows:

thread: id, content, title, author_id

thread_tags: id, tag_id, thread_id

tags: id, name

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T01:58:21+00:00Added an answer on May 19, 2026 at 1:58 am

    Don’t try to squish multiple values into a single cell. This isn’t how SQL was designed to be used and as you correctly point out it can cause problems if your separator appears as one of the values.

    Luckily there is a way to solve this by rewriting your query. The solution is to return multiple rows instead of multiple values in a cell. Effectively you are normalizing your result set.

    In other words, instead of this:

    1 tag_1,tag_2,tag_3
    2 tag_2,tag_4,tag_5
    

    Do this:

    1 tag_1
    1 tag_2
    1 tag_3
    2 tag_2
    2 tag_4
    2 tag_5
    

    Doing this naïvely can result in duplicating the same values for the other columns, which can be wasting bandwidth unnecessarily if those columns could potentially contain a lot of data. The solution to this is to use two queries.

    In other words instead of this:

    1 foo bar tag_1
    1 foo bar tag_2
    1 foo bar tag_3
    2 baz qux tag_2
    2 baz qux tag_4
    2 baz qux tag_5
    

    Do this:

    Result 1:
    1 foo bar
    2 baz qux
    
    Result 2:
    1 tag_1
    1 tag_2
    1 tag_3
    2 tag_2
    2 tag_4
    2 tag_5
    

    Now your result set is in normal form. Also note that you no longer need to run a DISTINCT operation as your results already are distinct. In fact these two queries much more closely match your original database tables so the queries can be much simpler and it will run faster.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
Seemingly simple, but I cannot find anything relevant on the web. What is the
this is what i have right now Drawing an RSS feed into the php,
I have just tried to save a simple *.rtf file with some websites and
I am trying to loop through a bunch of documents I have to put
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm making a simple page using Google Maps API 3. My first. One marker

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.