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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T22:54:47+00:00 2026-05-28T22:54:47+00:00

Suppose I have the following three tables expressing a relationship where posts are given

  • 0

Suppose I have the following three tables expressing a relationship where posts are given tags (a many-to-many relationship):

create table posts (id integer, content text, primary key (id));
create table tags (tag varchar(30), description text, primary key (tag));
create table post_tags (post_id integer, tag varchar(10),
    primary key (post_id, tag),
    foreign key (post_id) references posts (id),
    foreign key (tag) references tags (tag));

Now suppose I want to find all posts with exactly the tags {clever,interesting}, and no others.

Here is my failed attempt. It finds posts which have the tags {clever,interesting}, but it also finds posts with the tags {clever,interesting,annoying} or {clever,interesting,unethical}.

select t1.post_id from post_tags as t1
    inner join post_tags as t2 on t2.post_id=t1.post_id
    where t1.tag='clever' and t2.tag='interesting';

I’m open to any suggestions for changing the structure to make this operation easier. However, I want to avoid things like adding a comma-separated list of tags in the posts table.

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

    This is an exact relational division problem.

    In SQL Server a well performing method (assuming unique constraint on post_id,tag) is

    SELECT post_id
    FROM   post_tags
    GROUP  BY post_id
    HAVING MIN(CASE
                 WHEN Keyword IN ( 'clever', 'interesting' ) THEN 1
                 ELSE 0
               END) = 1
           AND SUM(CASE
                     WHEN Keyword IN ( 'clever', 'interesting' ) THEN 1
                     ELSE 0
                   END) = 2  
    

    So I wouldn’t rule out the idea of using GROUP_CONCAT in the HAVING instead.

    HAVING GROUP_CONCAT(DISTINCT Keyword ORDER BY Keyword) = 'clever,interesting'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's suppose I have the following table (let's call it my_table ): CREATE TABLE
I have three tables, 1-Users, 2-Softwares, 3-UserSoftwares. if suppose, Users table having 6 user
Let's suppose I have a the following simplified example database consisting of three tables:
I have three tables: User, Employee and Worker. User table has one-to-zero-or-one relationship with
Using Postgres v. 8.4.2. I have a standard three-table setup for a many-to-many relationship.
Suppose I have the following table definition: CREATE TABLE x (i serial primary key,
Suppose I have three tables in my Rails app: cats , dogs , and
Here's my situation.. Suppose you have the following model entities, which represent single tables
Suppose that I have the following mapping with a formula property: <class name=Planet table=planets>
Suppose I have the following html: var testString = ' <span id='id'> <div> <table>

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.