From ec60a125afd8da2774380112275726a6c800e91a Mon Sep 17 00:00:00 2001 From: Pedro Ramos Date: Mon, 2 Sep 2024 20:18:23 -0300 Subject: [PATCH] Fix markdown of SQL 'GROUP BY' and 'MAX' pages (#6963) --- src/data/roadmaps/sql/content/max@YqDJq3fPxUZlwsdq0kJg7.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/sql/content/max@YqDJq3fPxUZlwsdq0kJg7.md b/src/data/roadmaps/sql/content/max@YqDJq3fPxUZlwsdq0kJg7.md index 999bb225b..90b11dfd8 100644 --- a/src/data/roadmaps/sql/content/max@YqDJq3fPxUZlwsdq0kJg7.md +++ b/src/data/roadmaps/sql/content/max@YqDJq3fPxUZlwsdq0kJg7.md @@ -1,6 +1,6 @@ # MAX -`MAX` is an aggregate function in SQL that returns the highest value in a set of values. It can be used with numeric, date, or string data types, selecting the maximum value from a specified column. `MAX` is often used in combination with `GROUP` BY to find the highest value within each group. This function is useful for various data analysis tasks, such as finding the highest salary, the most recent date, or the alphabetically last name in a dataset. +`MAX` is an aggregate function in SQL that returns the highest value in a set of values. It can be used with numeric, date, or string data types, selecting the maximum value from a specified column. `MAX` is often used in combination with `GROUP BY` to find the highest value within each group. This function is useful for various data analysis tasks, such as finding the highest salary, the most recent date, or the alphabetically last name in a dataset. Learn more from the following resources: