Skip to content

Commit 4482c2b

Browse files
Update find-the-latest-reported-values-with-ease-using-max_by-and-min_by-aggregations.md
1 parent cde2fe5 commit 4482c2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

find-the-latest-reported-values-with-ease-using-max_by-and-min_by-aggregations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Basic Example
66

7-
`MIN_BY` and `MAX_BY` functions allow you to find the minimum or maximum value in a given column based on the values in another column. For example, if you have a table with three columns, order_number, sales associate and order_amount, you can use the min_by(order_number, order_amount) to find the row with the order with the lowest price for each sales associate:
7+
`MIN_BY` and `MAX_BY` functions allow you to find the minimum or maximum value in a given column based on the values in another column. For example, if you have a table with three columns, order_number, sales associate and order_amount, you can use the `min_by(order_number, order_amount)` to find the row with the order with the lowest order_amount for each sales associate:
88

99
### Input Table
1010

0 commit comments

Comments
 (0)