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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T09:06:59+00:00 2026-06-05T09:06:59+00:00

I am working with a many-to-many relationship in MySQL as in the simplified example

  • 0

I am working with a many-to-many relationship in MySQL as in the simplified example below. What I would like to do is given a category id, find the objects that are in that category and ONLY that category.

I can easily get all of the objects in a category:

SELECT * from object INNER JOIN link ON object.objectID = link.objectID WHERE link.categoryID=1;

This gives me object1 and object2, however what I want is just object1 as object2 is also in category2.

The only thing I could think of was using this as a subquery to get all the links for those object ids and then getting the ones with a count of 1.

I’m hoping there is a simpler and more efficient way!

-- Table: object
+---------+-----------+
| id      | name      |
+---------+-----------+
|       1 | object1   |
|       2 | object2   |
+---------+-----------+

-- Table: category
+------+-----------+
| id   | name      |
+------+-----------+
|    1 | category1 |
|    2 | category2 |
+------+---------+

-- Table: link
+-----------+-------------+
| objectid  | categoryid  |
+-----------+-------------+
|    1      | 1           |
|    2      | 1           |
|    2      | 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-06-05T09:07:00+00:00Added an answer on June 5, 2026 at 9:07 am

    You can group the link table by object and filter for only those groups containing one record:

    SELECT objectid FROM link GROUP BY objectid HAVING COUNT(*) = 1 AND categoryid = 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to advanced MySQL having only come across many-to-many relationships yesterday. I'm working
I'm trying to get a one-to-many relationship working with grails/gorm. I don't understand how
I am working a project with many NUnit tests, that were already written long
I have many-to-one mappings working fine, but a one-to-many relationship between locations and location_times
I'm working on an events site and have a one to many relationship between
I'm working on a restaurant CMS app. I have a many-to-many relationship between 2
I'm working with Core Data and a many-to-many relationship: a building can have multiple
I'm working with EF4.1 Code First and am trying to create some Many-to-Many relationship
I have some code that saves a many to many relationship in code. It
I am trying to define a one to many relationship between Category and Project

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.