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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:57:30+00:00 2026-05-11T13:57:30+00:00

So I have an example table called items with the following columns: item_id (int)

  • 0

So I have an example table called items with the following columns:

  • item_id (int)
  • person_id (int)
  • item_name (varchar)
  • item_type (varchar) – examples: ‘news’, ‘event’, ‘document’
  • item_date (datetime)

…and a table person with the following columns: ‘person_id’, ‘person_name’.

I was hoping to display a list of the top 2 submitters (+ the COUNT() of items submitted) in a given time period for each item_type. Here’s basically what I was hoping the MySQL output would look like:

person_name  | item_type | item_count  Steve Jobs   | document  | 11 Bill Gates   | document  | 6 John Doe     | event     | 4 John Smith   | event     | 2 Bill Jones   | news      | 24 Bill Nye     | news      | 21 

How is this possible without making a separate query for each item_type? Thanks in advance!

  • 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. 2026-05-11T13:57:31+00:00Added an answer on May 11, 2026 at 1:57 pm
    SELECT  item_type, person_name, item_count FROM    (         SELECT  item_type, person_name, item_count,                 @r := IFNULL(@r, 0) + 1 AS rc,                 CASE WHEN @_item_type IS NULL OR @_item_type <> item_type THEN @r := 0 ELSE 1 END,                 @_item_type := item_type,         FROM    (                 SELECT  @r := 0,                         @_item_type := NULL                 ) vars,                 (                 SELECT  item_type, person_name, COUNT(*) AS item_count                 FROM    items                 GROUP BY                         item_type, person_name                 ORDER BY                         item_type, person_name, item_count DESC                 ) vo         ) voi WHERE   rc < 3 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 197k
  • Answers 197k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Whats happening is that the .NET framework prerequisite is detecting… May 12, 2026 at 7:21 pm
  • Editorial Team
    Editorial Team added an answer I don't know of a framework, but using prototypal inheritance… May 12, 2026 at 7:21 pm
  • Editorial Team
    Editorial Team added an answer Beware Bobby Tables! $ID = mysql_real_escape_string($_SESSION['ID']); Escape any and all… May 12, 2026 at 7:21 pm

Related Questions

I am using c# .net. Thanks in advance for any help. I have searched
I'm using an Informix (Version 7.32) DB. On one operation I create a temp
I ran into a scenario where LINQ to SQL acts very strangely. I would
referring to this question , I've decided to duplicate the tables every year, creating

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.