Fix markdown of SQL 'GROUP BY' and 'MAX' pages (#6963)

pull/6972/head
Pedro Ramos 3 months ago committed by GitHub
parent 319a215666
commit ec60a125af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      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:

Loading…
Cancel
Save