fix: converted single to triple backticks14 (#36241)

This commit is contained in:
Randell Dawson
2019-06-20 13:35:05 -07:00
committed by Tom
parent 7917d5c6c3
commit 397014136e
75 changed files with 1782 additions and 1506 deletions

View File

@@ -8,16 +8,18 @@ localeTitle: دالة Avg SQL
هنا هو بناء الجملة لاستخدام الوظيفة:
`select groupingField, avg(num_field)
from table1
group by groupingField
`
```sql
select groupingField, avg(num_field)
from table1
group by groupingField
```
إليك مثال على ذلك باستخدام جدول الطالب:
`select studentID, FullName, avg(sat_score)
from student
group by studentID, FullName;
`
```sql
select studentID, FullName, avg(sat_score)
from student
group by studentID, FullName;
```
![صورة 1](https://github.com/SteveChevalier/guide-images/blob/master/avg_function01.JPG?raw=true)