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

  • Home
  • SEARCH
  • 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 6628803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:10:10+00:00 2026-05-25T22:10:10+00:00

I have a tagging system implemented in PHP and MySQL, with the following tables:

  • 0

I have a tagging system implemented in PHP and MySQL, with the following tables:

Table: blog_tags

  • tag_id
  • tag_name

Table: blog_tags_assoc

  • tag_assoc_id
  • article_id
  • tag_id

Table: blog_articles

  • article_id
  • article_title
  • article_content

I have them all linked using the Many to Many relationship
(reference to something similar: How to store tags in MySQL tags, one field in total or one filed for each tag?)

What I’m trying to do now is make a MySQL query that selects all the tags from blog_tags that have actually been referenced by the articles in blog_articles.

So far, I know that “HAVING” is something I might use…but I’m not sure how?
Any ideas or suggestions would be most welcome. Thanks!

  • 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-25T22:10:11+00:00Added an answer on May 25, 2026 at 10:10 pm

    This will get a tag name as well as a count of articles that tag has been used.

    SELECT
        `blog_tags`.`tag_name`,
        count(*) AS `blog_article_count`
    FROM `blog_tags`
        JOIN `blog_tags_assoc`
            ON `blog_tags`.`tag_id`=`blog_tags_assoc`.`tag_id`
        JOIN `blog_articles`
            ON `blog_articles`.`article_id`=`blog_tags_assoc`.`article_id`
    GROUP BY `blog_tags`.`tag_name`
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a PHP web application which uses a MySQL database for object tagging,
based on How to implement tagging system similar to SO in php/mysql? ive made
I have a MySQL tag-mapping table with structure from the following post - Recommended
I would like to have pretty URLs for my tagging system along with all
I'm working on a tagging system using 3 tables (normalised). I wanted to create
I am looking for a web based file management system and have the following
I have a StackOverflow-like tagging system for a database I'm working on. And I'm
I'm working on a tagging system for an image site, and I have: function
Heres what I'm trying to accomplish: I have a tagging system in place. Tags
The Idea is to have a tagging system between Users and Content(images, videos, posts)

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.