| 1. |
List the built-in functions associated with Group functions in SQL. |
|
Answer» The built-in functions associated with GROUP functions in SQL are 1. COUNT function: 2. MAX function: returns the maximum values from the column for each group of records. 3. MIN function: returns the lowest values from the column for each group of records. 4. AVG function: returns the average values from the column for each group of records. SELECT AVG(cost) FROM products WHERE category = ‘Clothing’; 5. SUM function: returns the total values from the column for each group of records. DISTINCT function: returns the once occurrence of many repeated values from the column for each group of records. |
|