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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:12:50+00:00 2026-05-31T00:12:50+00:00

I have a mySQL database which includes 3 tables to associate galleries with images.

  • 0

I have a mySQL database which includes 3 tables to associate galleries with images. The images are stored in the table “files” and the galleries in the table “galleries”, so I use a middle table called “gallery_files” for the association between them. The “gallery_files” table consists of the 2 IDs (F_ID, G_ID) of each of the main tables respectively.

The files/images can be associated with more than one gallery, so there can be records in the “gallery_files” of the same F_ID for different G_IDs.

Now, I would like to make a mySQL query which would bring all the images that ARE NOT associated with a given gallery already. So I use the following query:

(let’s say for the gallery with ID: 9)

SELECT * FROM files
INNER JOIN gallery_files ON files.F_ID=gallery_files.F_ID
WHERE files.F_FILETYPE IN ('.jpg','.jpeg','gif','png')
  AND files.F_DELETED = 0
  AND gallery_files.G_ID <> 9

My problem is that if there is a record of an image associated with a different gallery it still brings it. I know why this happens, but I cannot think of a smart query to do the job. I know how to solve this by using 2 queries but I would like to avoid it, if possible.

Any thoughts?

  • 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-31T00:12:52+00:00Added an answer on May 31, 2026 at 12:12 am

    Without a subquery, you can use an outer join, and check for NULL columns to only select those rows that don’t match the inner join:

    SELECT * FROM files
    LEFT JOIN gallery_files ON files.F_ID=gallery_files.F_ID AND gallery_files.G_ID = 9
    WHERE files.F_FILETYPE IN ('.jpg','.jpeg','gif','png')
      AND files.F_DELETED = 0
      AND gallery_files.G_ID IS NULL
    

    By putting the G_ID condition in the ON clause, the JOIN joins each file to its gallery-9 row from the gallery_files table, if that exists, or to NULLs if it doesn’t (since it’s an outer join).

    Then, by checking for NULL in the gallery_files columns (I checked G_ID, but any column would have worked), we only get those rows from files which were not in gallery 9.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a mysql database which has grown to over 200 tables in it.
i have a large mysql database table in which one column contains values ranging
I have a MySQL database with multiple tables, each of which have the same
Greetings friends, In my MySQL database, I have 'MAB' table which contains information about
I have a database with a table which includes among others, one column of
I have a table in my database called agendas which is linked with another
I have a mysql database which as one of the fields contains a html
I have mysql database and I want a software which can draw the database
I have a MySQL database behind a firewall which can only be accessed via
I have a database in MySQL which have entries of time. There are more

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.