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 6630565
In Process

The Archive Base Latest Questions

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

I have a table that links entries with associated tags with the following data

  • 0

I have a table that links entries with associated tags with the following data in it:

entry_id |  tag_id
1        |  1
2        |  1
3        |  1
1        |  2
2        |  2

I am trying to write a query that returns only entries tagged with 1 AND 2, in this example entries 1 and 2 would be returned, while 3 would not, because it does not have both tags. The current query I am using works but I know can’t be right:

SELECT entry_id, GROUP_CONCAT(DISTINCT tag_id ORDER BY tag_id)
FROM tags
GROUP BY entry_id
HAVING GROUP_CONCAT(DISTINCT tag_id ORDER BY tag_id) LIKE "%1,2%";
  • 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:25:22+00:00Added an answer on May 25, 2026 at 10:25 pm

    If (entry_id, tag_id) is unique:

    SELECT entry_id
    FROM yourtable
    WHERE tag_id IN (1, 2)
    GROUP BY entry_id
    HAVING COUNT(*) = 2
    

    An alternative approach that doesn’t require uniqueness and can also be faster:

    SELECT T1.entry_id
    FROM yourtable T1
    JOIN yourtable T2
    ON T1.entry_id = T2.entry_id
    AND T1.tag_id = 1
    WHERE T2.tag_id = 2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have table that I insert data with following query (from c# code): INSERT
So I have a an ajax table of results that have tags links that
I have a table that contains a record of prioritys that links to another
I have a table in SQL that links to itself through parentID. I want
So I have a table Links of links, that was initially populated using Nokogiri.
I have the following problem (simplified): I have a table that contains animals, e.g:
I have the following table Table bots{ ip_address varchar(15), bot_name varchar(32) } Given that
I have a table that displays data from a MySQL table. I have an
I have a database that which contains two tables, links and tour. Tour is
I have something similar to that: <table> <tr> <td>Hello,<br/>World!</td> </tr> </table> Both lines Hello,

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.