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

  • Home
  • SEARCH
  • 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 7160211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:21:44+00:00 2026-05-28T13:21:44+00:00

I would like to determine two things from a single query: Most prevalent column

  • 0

I would like to determine two things from a single query:

  1. Most prevalent column in a table
  2. The amount of times such column was located upon querying the table

Example Table:

user_id      some_field
1                data
2                data
1                data

The above would return user_id # 1 as being the most prevalent in the table, and it would return (2) for the total amount of times that it was located in the table.

I have done my research and I came across two types of queries.

  1. GROUP BY user_id ORDER BY COUNT(*) DESC
  2. SUM

The problem is that I can’t figure out how to use these two queries in conjunction with one another. For example, consider the following query which successfully returns the most prevalent column.

$top_user = "SELECT user_id FROM table_name GROUP BY user_id ORDER BY COUNT(*) DESC";

The above query returns “1” based on the example table shown above. Now, I would like to be able to return “2” for the total amount of times the user_id (1) was found in the table.

Is this by any chance possible?

Thanks,

Evan

  • 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-28T13:21:45+00:00Added an answer on May 28, 2026 at 1:21 pm

    You can include count(*) in the SELECT list:

    SELECT user_id, count(*) as totaltimes from table_name 
             GROUP BY user_id ORDER BY count(*) DESC;
    

    If you want only the first one:

    SELECT user_id, count(*) as totaltimes from table_name 
             GROUP BY user_id ORDER BY count(*) DESC LIMIT 1;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two times in PHP and I would like to determine the elapsed
How do I determine if two jQuery objects are equal? I would like to
I would like to determine which of the two layouts below is the better
I would like to determine the operating system of the host that my Java
I would like to determine what the long url of a short url is.
I would like to determine a remote page's encoding through detection of the Content-Type
I am would like to determine a direction moving x degrees clockwise starting on
I am battling regular expressions now as I type. I would like to determine
I would like to know how do you determine the hardware needed for a
I would like my GWT program to be able to determine whether it's in

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.