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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T18:31:41+00:00 2026-06-15T18:31:41+00:00

Im trying to do a LEFT JOIN/INNER JOIN/JOIN (forgot the differences, my MySQL knowledge

  • 0

Im trying to do a LEFT JOIN/INNER JOIN/JOIN (forgot the differences, my MySQL knowledge got dusty…) on two tables. one is categories and the other is images .

I want to return a list of all categories with a certain parent value, and for each of these categories return the latest image from images for that category.

I ended up with this query:

SELECT * FROM `categories` AS `a`
         JOIN (SELECT `im`.`preview` AS `preview`,
                      `im`.`cid` AS `cid` 
               FROM `images` AS `im`
               ORDER BY `im`.`cid` DESC) AS `b`
               ON (`a`.`cid` = `b`.`cid`)
         GROUP BY `preview`

This returns a single image from the images table for each row in the category table,
But if I’d try to condition/sort the resulting table, I’ll start getting weird results,
for example changing the end to this or any similar variation:

WHERE `a`.`parent` = 10
GROUP BY `preview`
ORDER BY `a`.`cid

Would appreciate any ideas you would have on this. Thanks in advanced.

  • 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-06-15T18:31:42+00:00Added an answer on June 15, 2026 at 6:31 pm

    You can do it also without join, just using subselect:

    SELECT
    c.*,
    (SELECT preview 
     FROM images img 
     WHERE img.cid = c.cid 
     ORDER BY img.id DESC
     LIMIT 1) AS preview
    FROM categories c
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to LEFT JOIN two tables, to get a list of all rows
Trying to create an outer join on two other joined tables when recieving this
Elloo, I have two doctrine entities and am trying to do left join however
Using extension syntax I'm trying to create a left-join using LINQ on two lists
I want to be able to inner join two tables based on the result
I'm trying to do a left join in subsonic 3 using linq but it
I am trying to inner join 2 DataTables on 2 DataColumns using Linq, I
I'm trying to do a left join on a constant like this: SELECT [t0].[DeviceId],
I am trying to get a list of products and images from two tables.
I'm trying to do a left join in linq to sql that has a

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.