Merge pull request #5377 from olawuwo/patch-1

Add SQL identifier to enable highlighting in snippet
pull/5392/head
dsh 7 months ago committed by GitHub
commit ab34fe725c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/data/roadmaps/sql/content/104-aggregate-queries/103-avg.md

@ -3,7 +3,7 @@
The `AVG()` function in SQL is an aggregate function that returns the average value of a numeric column. It calculates the sum of values in a column and then divides it by the count of those values. The `AVG()` function in SQL is an aggregate function that returns the average value of a numeric column. It calculates the sum of values in a column and then divides it by the count of those values.
Syntax: Syntax:
``` ```sql
SELECT AVG(column_name) SELECT AVG(column_name)
FROM table_name; FROM table_name;
``` ```
@ -37,4 +37,4 @@ GROUP BY CustomerID;
``` ```
It will calculate the average quantity for each customer and display the result along with the associated customer's ID. It will calculate the average quantity for each customer and display the result along with the associated customer's ID.
> Note: The `AVG()` function works only with numeric data types (`INT`, `FLOAT`, `DECIMAL`, etc.). It will return an error if used with non-numeric data types. > Note: The `AVG()` function works only with numeric data types (`INT`, `FLOAT`, `DECIMAL`, etc.). It will return an error if used with non-numeric data types.

Loading…
Cancel
Save