|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Group Functions in Query Statements
By: FYIcenter.com
(Continued from previous topic...)
What Are Group Functions in Query Statements?
Group functions are functions applied to a group of rows.
Examples of group functions are:
- COUNT(*) - Returns the number of rows in the group.
- MIN(exp) - Returns the minimum value of the expression evaluated on each row of the group.
- MAX(exp) - Returns the maximum value of the expression evaluated on each row of the group.
- AVG(exp) - Returns the average value of the expression evaluated on each row of the group.
- SUM(exp) - Returns the sum value of the expression evaluated on each row of the group.
- COUNTDISTINCT(exp) - Returns the number of distinct values of the expression evaluated on each row of the group.
(Continued on next topic...)
- What Is a SELECT Query Statement?
- How To Create a Testing Table with Test Data?
- How To Select All Columns of All Rows from a Table with a SELECT statement?
- How To Select Some Specific Columns from a Table in a Query?
- How To Select Some Specific Rows from a Table?
- How To Add More Data to the Testing Table?
- How To Sort the Query Output with ORDER BY Clauses?
- Can the Query Output Be Sorted by Multiple Columns?
- How To Sort Query Output in Descending Order?
- How To Count Rows with the COUNT(*) Function?
- Can SELECT Statements Be Used on Views?
- How To Filter Out Duplications in the Returning Rows?
- What Are Group Functions in Query Statements?
- How To Use Group Functions in the SELECT Clause?
- Can Group Functions Be Mixed with Non-group Selection Fields?
- How To Divide Query Output into Multiple Groups with the GROUP BY Clause?
- How To Apply Filtering Criteria at Group Level with The HAVING Clause?
- How To Count Duplicated Values in a Column?
- Can Multiple Columns Be Used in GROUP BY?
- Can Group Functions Be Used in the ORDER BY Clause?
|