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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T01:02:55+00:00 2026-06-17T01:02:55+00:00

I am currently getting details from my ‘social_posts’ table, and then adding it’s tags,

  • 0

I am currently getting details from my ‘social_posts’ table, and then adding it’s tags, the number of likes, and the number of answers it has to the resulting object. Is there a way I can be doing this without having to do extra queries in a loop?

    $query = "SELECT * FROM social_posts JOIN users ON social_posts.user_id = users.id";
    $posts = $this->db->query($query);

    if ($posts->num_rows() > 0) {        
        foreach ($posts->result() as $p => $post) {                     
            // Get the question's tags
            $tags = $this->db->query("SELECT * FROM social_tags 
                WHERE post_id = ?", $post->post_id);

            // Get the number of likes
            $likes = $this->db->query("SELECT id FROM social_likes 
                WHERE post_id = ?", $post->post_id);

            // Get the number of answers
            $answers = $this->db->query("SELECT id FROM social_responses 
                WHERE post_id = ?", $post->post_id);

            $post->tags = $tags->result();
            $post->likes = $likes->num_rows();
            $post->answers = $answers->num_rows();
            $post->author = array(
                "firstname" => $post->firstname,
                "thumbnail" => $post->thumbnail,
            );
        }

        return $posts->result();
    } else {
        return FALSE;
    }
  • 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-17T01:03:01+00:00Added an answer on June 17, 2026 at 1:03 am

    You may try this SQL:

    SELECT 
        social_posts.*,
        users.*,
        GROUP_CONCAT(social_tags.name) AS tags,
        COUNT(social_likes.id) AS likes,
        COUNT(social_responses.id) AS answers
    FROM 
        social_posts 
            JOIN users ON social_posts.user_id = users.id
            LEFT JOIN social_tags ON social_tags.post_id = social_posts.id
            LEFT JOIN social_likes ON social_likes.post_id = social_posts.id
            LEFT JOIN social_responses ON social_responses.post_id = social_posts.id
    GROUP BY
        social_posts.id
    

    You will get the tags as comma delimited string. Of course you need to adjust the column names to fit your database.

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

Sidebar

Related Questions

I'm currently getting the user's birthday from Facebook and storing it in the standard
I am currently getting images from the 'Documents' directory (using -imageWithContentsOfFile:) with no problems
I am currently doing some basic PHP and I am getting products from mysql
I am currently developing an app for getting nearest banks and atms from the
here is my urls.py and am currently getting the error: tuple object has no
I'm currently getting a site designed by a person who works in photoshop and
I'm currently getting to grips with mod_rewrite and have ran into a stumbling block
I am currently getting first day Of this week and last week values with
I'm currently getting a Could not load type UI.Administration.Site.master error message and I'm not
I'm currently getting all the Select elements that exist in a form with the

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.