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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:06:49+00:00 2026-05-24T11:06:49+00:00

tables: POSTS (id title data userid) CONNECTIONS( postid userid) I want to get rows

  • 0

tables:
POSTS
(id
title
data
userid)

CONNECTIONS(
postid
userid)

I want to get rows from the POSTS table by the amount of c.postid values that are the same in the CONENCTIONS c table

In easier terms, I want to get the most popular posts, with the most connections.

I hope that makes sense.

  • 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-24T11:06:50+00:00Added an answer on May 24, 2026 at 11:06 am
    SELECT p.id, p.name, c.cnt from posts p INNER JOIN (
        SELECT postid, count(*) as cnt 
        FROM connections 
        GROUP BY postid ORDER BY cnt DESC /*limit goes here if you need it!*/) c 
    ON c.postid = p.id
    

    A little warning:

    It would be pretty heavy query in case if you dealing with high loads. I’d suggest to have the cnt (a number of connections) field right within your posts table (it would be a denormalization and it’s harder to maintain, but would work good enough to decrease querying time by 2 times or more if you would create an index on cnt field).

    Let me know if the query has worked or not, cause I can’t check myself right now.

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

Sidebar

Related Questions

I have a table posts that could look like this: id | title |
I'm trying to combine data from two tables in MySQL with PHP. I want
CREATE TABLE Posts { id INT PRIMARY KEY AUTO_INCREMENT, title VARCHAR(200), url VARCHAR(200) }
I have 2 tables: posts tags Tags table is structured like this: post_id tag
I have two tables - forum_topics and topics_posts . I want to select rows
I have 2 tables (Users, Wall). The UserID in the Wall table is a
I have a page where values from a table in my database are being
I am trying to pull data from a table I have imported into my
So, I'm going to say that I have three tables as follows: POSTS POSTS_TAGS
If you have a table called posts, which contains id, title, content .etc, how

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.