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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T05:53:09+00:00 2026-05-12T05:53:09+00:00

I’m trying to avoid using queries in while loops. Therefore I’ve come to the

  • 0

I’m trying to avoid using queries in while loops. Therefore I’ve come to the conclusion that I should use a cross join. Take this example:

SELECT * FROM products 
CROSS JOIN images USING (imgId) 
CROSS JOIN productcolors ON colorsId = colorId
WHERE productId = 1

should return two rows (table structure below):

imgId | productId | colorId  | imgSrc      | colorName
1       1           1          img1_0.png    copper

imgId | productId | colorId  | imgSrc      | colorName
1       1           1          img1_0.png    slate

and when productId = 2 should return one row:

imgId | productId | colorId  | imgSrc      | colorName
null    2          -1          null          null

The images table contains multiple records with the same imgId, the same applys for productcolors where several colorIds could / will have the same value. There could also be no records in the images table (if imgId for example = -1 in the products table). That would mean that a product has no colors. Now, when I make this query and the images table or productcolors table contains no record for the imgId or colorId the query will return no result at all. I would like the fields in the row to contain null values instead of not returning anything, behaving like a Left outer join and cross join together.

Maybe I should have queries in my whileloop instead? Is there maybe any other way to approach this problem?

EDIT: My tables

products:
productId | colorsId | imgId
1           1          1
2          -1         -1      //product 2 has no images nor colors

productcolors:
colorId | colorName
1         copper
1         slate

images:
imgId | imgSrc
1       img1_0.png
  • 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-12T05:53:09+00:00Added an answer on May 12, 2026 at 5:53 am

    I’d recommend retooling the way product colors are stored, turning it into something like this:

    products:
    productId | imgId | productName
    1           1       rock
    2           null    roll
    
    productcolors:
    productId | colorId
    1           1
    1           2
    
    colors:
    colorId   | colorName
    1           copper
    2           slate
    
    images:
    imgId | imgSrc
    1       img1_0.png
    

    productcolors above is a many-to-many join table.

    This also assumes that you only have one image for each product, and leaves that table alone.

    To get a list of products including their colors:

    SELECT p.productId, p.productName, c.colorId, c.colorName, i.imgSrc
    FROM products p
    LEFT JOIN images i USING (imgId)
    LEFT JOIN productcolors pc USING(productId)
    LEFT JOIN color c USING(colorId)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 167k
  • Answers 167k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer HyperlinkButton works. I was trying with HtmlPage.Window.Navigate with no success.… May 12, 2026 at 1:26 pm
  • Editorial Team
    Editorial Team added an answer I don't think that's the point of constraints, (but I… May 12, 2026 at 1:26 pm
  • Editorial Team
    Editorial Team added an answer <style type="text/css"> select { width:200px; } </style> Does that not… May 12, 2026 at 1:26 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.