InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a built in aggregate function in SQL?(a) avg(b) max(c) total(d) count |
|
Answer» The correct choice is (c) total For explanation I would say: SQL does not include total as a built in aggregate function. The avg is used to find average, max is used to find the maximum and the count is used to count the number of values. |
|