Saved Bookmarks
| 1. |
Name and briefly describe the five SQL built-in functions. |
|
Answer» COUNT: computes the number of rows in a table. SUM: totals numeric columns. AVG: computes the average value. MAX: obtains the maximum value of a column in a table. MIN: obtains the minimum value of a column in a table. |
|