InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the group functions in SQL? Give some examples of group functions. |
|
Answer» Group functions in SQL work on sets of rows and returns one result per group. Examples of group functions are AVG, COUNT, MAX, MIN, STDDEV, SUM, VARIANCE. |
|