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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:36:29+00:00 2026-05-13T07:36:29+00:00

I want to order my results by client 1, 2, 3, then again client

  • 0

I want to order my results by client 1, 2, 3, then again client 1, 2, 3, and so on.

Is there a way to do this without using a for loop or making three separate queries? Not only that, but I am working with paginated data so it needs to return x results, but consistently.

Any ideas? GROUP BY maybe?

client_id  project_id  project_name  
---------- ----------  ------------
 1         42          project abc
 2         49          project xyz
 3         41          project 123
 1         22          project apple
 2         29          project orange
 3         21          project banana
  • 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-13T07:36:29+00:00Added an answer on May 13, 2026 at 7:36 am

    Use:

    SELECT x.client_id, 
           x.project_id,
           x.project_name
      FROM (SELECT t.client_id,
                   t.project_id,
                   t.project_name,
                   CASE
                     WHEN @client_id != t.client_id THEN @rownum := 0
                     WHEN @client_id = t.client_id THEN @rownum := @rownum + 1
                     ELSE @rownum 
                   END AS rank,
                   @client_id := t.client_id
              FROM TABLE t,
                   (SELECT @rownum := 0, @client_id
          ORDER BY t.client_id) r) x
    ORDER BY x.rank, x.client_id
    

    MySQL doesn’t have any ranking functionality, but luckily you can use variables. The key was resetting the @rownum value when the client_id doesn’t match the previous client_id – the ORDER BY in the subquery is to ensure that clients are in order.

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

Sidebar

Related Questions

I want to order by Time,but seems no way to do that ? mysql>
This SQL query gives me the results I want; however, I want the results
I need the results of this to be unchanged but i want it to
I want to order a result by fieldx * fieldy , for example: Row
I want to order grades that are a string in the following order. K,
I want to order by id asc, date asc, but in the case where
I want to order values from database query by date but I want also
I prompt the user if they want to order fish, once they are done
I have a table: ID name c_counts f_counts and I want to order all
...@Sort bit) AS SELECT .............. and I want to Order only if Sort =

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.