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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:44:20+00:00 2026-05-27T18:44:20+00:00

I have a set of image paths stored in a table like this: +———————————————————+

  • 0

I have a set of image paths stored in a table like this:

    +---------------------------------------------------------+
    |ID           |pimg0        |pimg1         |pimg2         |
    +-------------+-------------+--------------+--------------+
    |1            |path/to/img0 |path/to/img1  |              |
    +---------------------------+--------------+--------------+
    |2            |path/to/img0 |path/to/img1  |              |
    +---------------------------+--------------+--------------+

and I want to get the table name of the empty field so I can put a new entry into it.

I have tried nesting IFNULL() commands in the mysql query, which didn’t work:

    IFNULL(pimg0, IFNULL(pimg1, IFNULL(pimg2, IFNULL(pimg3, IFNULL(pimg4, IFNULL(pimg5))))))

I have also tried some case blocks which didn’t work. Ideally I would like my query to return “pimg2” in the above scenario, but if it was to return “pimg1” I could easily increment it.

EDIT: Edited the table above, to clarify.

  • 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-27T18:44:21+00:00Added an answer on May 27, 2026 at 6:44 pm

    You’re experiencing one of the pain points of repeating groups across columns, which is a violation of First Normal Form.

    The pain goes away if you normalize, by creating a child table with one column for image path, and adding multiple rows when you have multiple images.

    CREATE TABLE Images (
      image_id  INT AUTO_INCREMENT PRIMARY KEY,
      owner_id INT NOT NULL, -- references `id` in your original table
      pimg      VARCHAR(40)
    );
    INSERT INTO Images (owner_id, pimg) VALUES 
     (1, 'path/to/img0'), (1, 'path/to/img1'), 
     (2, 'path/to/img2'), (2, 'path/to/img3');
    

    Structuring a database in this way makes it easier to do many tasks:

    • Insert a new image by INSERT a new row; no need to find the blank column.
    • Add a fourth or a fifth image to a given owner_id.
    • Search a given image and report which owner_id owns it.
    • Count images per owner_id.
    • Avoid duplicates.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Django, I have images stored in site_media like this : /site_media/somepath/image.jpg The urls.py
I retrieve an image I have saved at the documents directory like this: //set
I have set a canvas' background to an image of a company logo. I
I have set of points which lies on the image. These set of points
I have created a Python file to generate a Mandelbrot set image. The original
I have a sprite image set as the background of an element on my
I have a set of jpeg images where each image has an associated description.
I have a GIF image that has an alpha set, and when my site
I have an image (PNG file) that has an alpha channel that is set
I have an image in a C# WPF app whose build action is set

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.