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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:56:57+00:00 2026-05-26T12:56:57+00:00

Okay so I have two tables, a category table and a posts table. I

  • 0

Okay so I have two tables, a category table and a posts table.

I was hoping to construct a query that would return each category, the last record in the post table for that category (category.id = post.category_id) AND the rowcount of all posts with post.category_id = category.id)

i.e

A list of categories, each with the record of the latest post for the category and the number of posts in that category.

I’ve tried various joins and subselects, and I have managed to get a list of categories, their post count, and their FIRST post (I need the last).

I have also managed to get a list of categories and their LAST post, but not the post count.

Any help/directions will be much appreciated!

  • 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-26T12:56:58+00:00Added an answer on May 26, 2026 at 12:56 pm

    Try this:

    SELECT category_id, MAX(post_id) AS post_id, COUNT(*) AS posts
    FROM post
    GROUP BY category_id
    

    This assumes that you have a column post_id that is strictly increasing and unique.

    If you have no such field but you have for example post_date that is not unique, you may get two rows for some categories in rare cases where two posts have exactly the same timestamp.

    To also get categories without posts use a LEFT JOIN:

    SELECT
        category.id AS category_id,
        MAX(post.id) AS post_id,
        COUNT(post.category_id) AS posts
    FROM category
    LEFT JOIN post
    ON category.id = post.category_id
    GROUP BY category.id
    

    If you need more columns from each table you can join the result above with the original tables:

    SELECT *
    FROM
    (
        SELECT
            category.id AS category_id,
            MAX(post.id) AS post_id,
            COUNT(post.category_id) AS posts
        FROM category
        LEFT JOIN post
        ON category.id = post.category_id
        GROUP BY category.id
    ) T1
    JOIN category
    ON T1.category_id = category.id
    LEFT JOIN post
    ON T1.post_id = post.id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables, A and B and a simple table, X, that maintains
Okay i have two models: posts and comments. as you can think comments has
I have two tables, Customer and CustomerConfiguration that should have a one-to-one mapping. What
In Access 2007, I have two tables related such that the (surrogate) PK of
QUESTION: Is it okay to have shortcut identifiers in a table so that I
Okay, so let's say I have a mysql database table with two columns, one
Okay so I have two tables: Companies | id int | name varchar(50) and
Okay... So, I came across the following problem: I have one table that works
I have a database table that includes a two bit fields: IsEvenSide and IsOddSide
Okay, I have two OperationContracts and MessageContracts, like this: [OperationContract] OperationResult OperationOnSingleItem(Input input) [OperationContract]

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.