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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T16:49:46+00:00 2026-06-15T16:49:46+00:00

I need to limit my result to 3 row (an example), but if 3rd

  • 0

I need to limit my result to 3 row (an example), but if 3rd result is equal to 4th, print also 4th, and so on.
To explain: from this table

id         punteggio
1          100
2          200
3          70
4          100
5          54
6          201
7          200

if I do

SELECT * FROM table ORDER BY punteggio DESC LIMIT 3

i need in every case to print following situation:

id         punteggio
6           201
2           200
7           200
1           100
4           100

Because my “three” best points are in reality 5 of 7, cause 2 and 7 have same points, like 1 and 4…

I dont’know in advance min and max points, otherwise i would do

"WHERE punteggio >= 100"

Thank you very much!

UPDATE

Unfortunately my scenario changed:

punteggio born from SUM from another table:

id          idPersona              punteggio
1             1                        30
2             1                        -10
3             2                        50
4             3                        60
5             2                        -10
6             3                        150
7             1                        190

and so on…

i’ve tried do:

SELECT  persone.nome,
SUM(transazioni.importoFinale) AS punti
FROM    transazioni
INNER JOIN persone ON persone.idPersona = transazioni.idPersona
INNER JOIN 

(SELECT DISTINCT(SUM(transazioni.importoFinale)) AS punti,
persone.nome
FROM    transazioni
INNER JOIN persone on persone.idPersona = transazioni.idPersona
GROUP BY persone.idPersona
ORDER BY punti DESC
LIMIT 3) subq ON transazioni.punti = subq.punti
ORDER BY punti DESC

but it doens’t function…

Thank you to all!

  • 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-06-15T16:49:48+00:00Added an answer on June 15, 2026 at 4:49 pm

    Use a subquery join to get the DISTINCT set of 3 greatest values for punteggio and join it against the main table to retrieve all rows that have those values.

    SELECT
      id,
      punteggio
    FROM
      yourtable
      /* subquery gets the top 3 values only */
      /* and the INNER JOIN matches it to all rows in the main table having those values */
      INNER JOIN (
         SELECT DISTINCT punteggio as p
         FROM yourtable
         ORDER BY punteggio DESC
         LIMIT 3
      ) subq ON yourtable.punteggio = subq.p
    ORDER BY punteggio DESC
    

    Here’s a demo on SQLFiddle.com

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

Sidebar

Related Questions

How can i get the nth row position from table without using limit ?
I need to limit the input from a user to only positive values, and
i need a timer that works like this : imagine somebody have a limit
I do this query(1): (1)SELECT * FROM t1 WHERE title LIKE 'key%' LIMIT 1
This is going to be one of those questions but I need to ask
need some help to clarify the concept. $sql = 'SELECT * FROM tbl_post LIMIT
I need to limit the amount of time and cpu taken by external command
I need to limit the number of characters that can be appended to an
I really need to limit any unnecessary network traffic and server trips. Solution: common
I have a PHP page I need to limit execution access of to only

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.