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

The Archive Base Latest Questions

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

Is there a way to include and exclude within a join? This is the

  • 0

Is there a way to include and exclude within a join? This is the current join in the query:

INNER JOIN linked_tags 
AS active ON active.track_id = music.id 
AND active.tag_id IN (19,25)

and I want to do this, but it’s not producing the results that I want

INNER JOIN linked_tags 
AS active ON active.track_id = music.id 
AND active.tag_id IN (19,25) AND active.tag_id NOT IN (44,15)

So, I want it to select any items with a tag_id of 19, but not if any other tracks exist that also have tag_id’s of 44 or 15.

As reference, here’s the whole query:

SELECT music.id, music.name AS name, music.filename, music.url_name, music.file_path_high, music.filesize, music.categories, music.duration, music.folder, tags.tag_name, music.has_versions, music.version_search_term, SUM(active.weight) AS total_weight
FROM (music)
INNER JOIN linked_tags AS active ON active.track_id = music.id AND active.tag_id IN (19,25) AND active.tag_id NOT IN (44,15)
INNER JOIN tags ON active.tag_id = tags.id
WHERE is_version = 0
OR is_version IS NULL
GROUP BY music.id
HAVING COUNT(DISTINCT active.tag_id)=1
ORDER BY total_weight DESC
LIMIT 25
  • 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:44+00:00Added an answer on May 28, 2026 at 10:54 pm

    If I understand your requirement correctly, then it’s not possible like that. conditions in the join are applied on the row being checked. they don’t refer to other rows in the table (not until their turn to be checked arrives). even though the same track can have multiple tags, those will be registered multiple rows in the table “linked_tags”.

    if you want to select tracks with tags 19 and 25 under the condition that those same tracks don’t also have tags 44,15 then you can probably do the following:

    SELECT music.id, music.name AS name, music.filename, music.url_name, music.file_path_high, music.filesize, music.categories, music.duration, music.folder, tags.tag_name, music.has_versions, music.version_search_term, SUM(active.weight) AS total_weight
    FROM (music)
    INNER JOIN linked_tags AS active ON active.track_id = music.id AND active.tag_id IN (19,25) 
       AND NOT EXISTS ( select *
                        from linked_tags active2
                        where active2.track_id=active.track_id
                        and active2.tag_id IN (44,15)
                      )
    INNER JOIN tags ON active.tag_id  = tags.id
    WHERE is_version = 0
    OR is_version IS NULL
    GROUP BY music.id
    HAVING COUNT(DISTINCT active.tag_id)=1
    ORDER BY total_weight DESC
    LIMIT 25
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to include a LIKE expression in a GROUP BY query?
Is there any way to include the SVN repository revision number in the version
Is there a way to include an entire text file as a string in
Is there a way to include a javascript-loaded advertisement last on the page, but
Is there a way to include a default empty option (or with text) if
Is there any way to include php file using require and calling a php
Is there a way to include some aspx/ascx markup in a DLL and use
Is there a way to not be forced to include members with the MustOverride
Is there any way to configure Doxygen to include the log from SVN for
Is there a way for me to include a simple array of strings, or

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.