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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T00:55:26+00:00 2026-06-08T00:55:26+00:00

I have the models User, Post, Comment and Tag. User creates Post. Posts can

  • 0

I have the models User, Post, Comment and Tag.

  • User creates Post.
  • Posts can have multiple Comment and Tag.

Each model has it’s own table, so there are tables ‘posts’, ‘comments’ and ‘tags’. Comments have a foreign key called ‘post_id’, while Tags have a many_to_many relation table called ‘post_tags’, in which there are two fields: ‘post_id’ and ‘tag_id’.

I want to get a nested array like below:

  • Which MySQL queries should I run?
  • I suppose I need to alter the result with PHP to get my nested array. How?

Thanks a lot for your help 🙂

    [0] => Array
    (
        [Post] => Array
            (
                [id] => 1
                [title] => First article
                [content] => aaa
                [created] => 2008-05-18 00:00:00
            )
        [Comment] => Array
            (
                [0] => Array
                    (
                        [id] => 1
                        [post_id] => 1
                        [author] => Daniel
                        [email] => dan@example.com
                        [website] => http://example.com
                        [comment] => First comment
                        [created] => 2008-05-18 00:00:00
                    )
                [1] => Array
                    (
                        [id] => 2
                        [post_id] => 1
                        [author] => Sam
                        [email] => sam@example.net
                        [website] => http://example.net
                        [comment] => Second comment
                        [created] => 2008-05-18 00:00:00
                    )
            )
        [Tag] => Array
            (
                [0] => Array
                    (
                        [id] => 1
                        [name] => Awesome
                    )
                [1] => Array
                    (
                        [id] => 2
                        [name] => Baking
                    )
            )
    )
    [1] => Array
    (
        [Post] => Array
            (...
  • 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-08T00:55:28+00:00Added an answer on June 8, 2026 at 12:55 am

    You better of doing 3 queries.

    1. first fetch post (, and left join the user if you need it), and store them like:

      $list[$row['post_id']]['Post'] = $row;
      
    2. then fetch all post-comments and store them as

      $list[$row['post_id']]['Comment'][$row['comment_id']] = $row;
      
    3. then fetch all post-tags

      $list[$row['post_id']]['Tags'][$row['tag_id']] = $row;
      

    that far more effective than trying to use a single query,
    as a single query going to end up sending the same data multiple times

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am having a four models.. User,post,tag,comment.. the relationship i want to have with
This is the scenario: I have a Posts Model and each post has a
I have three models: Post , Comment , User and Vote . I'm using
I have a Blog model, a Post model and a Comment model: class Blog(models.Model):
Right now, I have three models Post, Comment and User (using Devise ) associated
I have Post and Comment model. I want to achieve the following: Each time
I have 3 model, User, Post, Comment with definition like below class Post <
In my app I have User , Post and Comment models. When a User
Let's say I have a User model which has_many :posts , while Post has_many
Let's say I have some models: User , Post , and Vote . 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.