devxlogo

Retrieving the Greatest Value from a Group

Retrieving the Greatest Value from a Group

Question:
I have a table like this one:

 Day_Period_Money (daydate date, period  number, amount  number);

Here is an example of some data:

 daydate  period amount01/01/99    1     1001/01/99    2     2001/01/99    3     1501/02/99    1     3001/02/99    2     2501/02/99    3     20

How do I get the largest amount for each day with the period? The result should look like this:

01/01/99    2      2001/02/99    1      30

Answer:
What you want and what you got are two different things, no? You are trying to generate two different groups and, as I’m sure you found out, if you include type with date in the group by expression, you’ll wind up with all the values for the day and all their groups of that day, which is not what you want.

The answer is, you can’t solve this in one pass, you need to do it as a two-step query?one to get the largest amount on a day and the other to get the type with its amount.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist