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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T07:58:59+00:00 2026-06-18T07:58:59+00:00

I have 3 tables : Post, PostComment and Comment. It’s a many-to-many relation. I

  • 0

I have 3 tables :

Post, PostComment and Comment.

It’s a many-to-many relation.

I want to select for each post the last comment.
So something like (select * from comment order by create_at DESC limit 1) doest not work here.

And I want something like:

select *
  from post as p
    left join post_comment as pc on (pc.post_id = p.id)
    left joint comment as c on (c.id = pc.comment_id)
    left joint comment as c2 on (c2.id = pc.comment_id and c2.id > c.id)
  where c2.id is null

It works very well for one-to-many relation, but I can’t get ride of this for many-to-many.

Note: I renamed my table. In my code, I do not use comment and post. And I do need a many-to-many relation.

Thanks you

  • 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-18T07:58:59+00:00Added an answer on June 18, 2026 at 7:58 am

    I did something like that :

    select *
      from post as p
        left join post_comment as pc on (pc.post_id = p.id)
        left join comment as c on (c.id = pc.comment_id)
        left outer join
                (post_comment as pc2
                    inner join comment as c2 on (c2.id = pc2.comment_id)
                ) on (bc2.post_id = p.id and c1.created_at < c2.created_at)
      where c2.id is null
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have tables: user, comment and post, say: A user can have many posts
Lets say I have 2 tables: blog_posts and categories. Each blog post belongs to
I am trying to make simple mysql select query, I have 3 tables post:
I have 4 tables POST: id POST_TAG: post_id tag_id value TAG: id SEARCH: tag_id
I have three tables: Post, Attachment, and Media. Posts have Attachments, and Attachments have
I have two tables. Table 1. ======== id post -------- Table 2. ======== id
If I have 3 models... Post, Logo_Category and Logo and 5 tables posts, logos,
I have two tables ( post , category ) CREATE TABLE post (pid INT(10)
I have multiple tables post id Name 1 post-name1 2 post-name2 user id username
I have 3 MySQL tables representing: photos a user post, videos a user post,

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.