Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
534 views
in Technique[技术] by (71.8m points)

aggregate functions - MAX funtion in SQL

I need to query a table to extract maximum values of purchases in any month. However, if there are 2 months with both having the maximum number of purchases, the query should return both. MAX function only returns one of them. How do I pull both or more if available

question from:https://stackoverflow.com/questions/65841626/max-funtion-in-sql

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can GROUP BY by the month(Do not know the exact names of your columns so I wild guessed):

select max(purchases), month
from db.table
group by month

So you will have something like this(EXAMPLE DATA).

max(purchases)   month
   100           1
   200           2
   150           3
   150           4

etc.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...