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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T06:13:12+00:00 2026-05-30T06:13:12+00:00

I have some sql that gathers product information. It also retrieves images from joined

  • 0

I have some sql that gathers product information. It also retrieves images from joined tables. Sometimes a product will have more than one image (sometimes none) and this causes duplicates in the results. How can I change this query to only return a single image (or no images) from the joined image tables – image_d,image_p,image_t ?

SELECT 
   products_categories.categoryid, 
   products.productid, 
   products.product, 
   products.descr, 
   products.rating, 
   products.title_tag, 
   images_d.image_path AS imaged, 
   images_p.image_path AS imagep, 
   images_t.image_path AS imaget, 
   clean_urls.clean_url 
FROM products_categories 
INNER JOIN products ON products_categories.productid = products.productid 
LEFT JOIN images_d ON products.productid = images_d.id 
LEFT JOIN images_p ON products.productid = images_p.id 
LEFT JOIN images_t ON products.productid = images_t.id 
LEFT JOIN clean_urls ON products.productid = clean_urls.resource_id 
WHERE  products_categories.categoryid = 265 
AND products_categories.main = 'Y' 
AND products.forsale = 'Y'
ORDER  BY productid 

Thanks.

  • 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-30T06:13:13+00:00Added an answer on May 30, 2026 at 6:13 am

    I assume that there’s more than one image in a given image_x table. You can use group_concat() to shoehorn multiple values into one CSV column:

    SELECT
       products_categories.categoryid, 
       products.productid, 
       products.product, 
       products.descr, 
       products.rating, 
       products.title_tag, 
       group_concat(images_d.image_path) AS imaged, 
       group_concat(images_p.image_path) AS imagep, 
       group_concat(images_t.image_path) AS imaget, 
       clean_urls.clean_url 
    FROM products_categories 
    INNER JOIN products ON products_categories.productid = products.productid 
    LEFT JOIN images_d ON products.productid = images_d.id 
    LEFT JOIN images_p ON products.productid = images_p.id 
    LEFT JOIN images_t ON products.productid = images_t.id 
    LEFT JOIN clean_urls ON products.productid = clean_urls.resource_id 
    WHERE products_categories.categoryid = 265 
    AND products_categories.main = 'Y'
    AND products.forsale = 'Y'
    GROUP BY 1,2,3,4,5,6,10
    ORDER BY productid 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have C# application that must store some information into MS SQL that would
i have some SQL code that is inserting values from another (non sql-based) system.
I have some SQL code that works great and returns the desired results from
Say we have some poorly written SQL that does not release temp tables when
I have some SQL that does an order by case statement. It works fine.
I have some sql statements that calculates some numbers. It's possible (with bonus points/penalty
I have some reports in SQL Server Reporting Services 2005 that I need to
I have some Crystal Reports connecting to a Sql Server db that I would
Hi I have some software written in VB6.0 that uses an SQL Server, but
I have a sql database that stores some documents. A user can sign into

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.