1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 21:11:44 +02:00

Update 103-avg.md

Added SQL language identifier to enable syntax highlighting
This commit is contained in:
Tai
2024-03-19 19:43:36 +00:00
committed by GitHub
parent 696e4f1890
commit 78be705f70

View File

@@ -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.
Syntax:
```
```sql
SELECT AVG(column_name)
FROM table_name;
```