|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Counting Rows with the COUNT(*) Function
By: FYIcenter.com
(Continued from previous topic...)
How To Count Rows with the COUNT(*) Function?
If you want to count the number of rows, you can use the COUNT(*) function
in the SELECT clause.
The following tutorial exercise shows you some good examples:
SELECT COUNT(*) FROM fyi_links
GO
7
SELECT COUNT(*) FROM fyi_links
WHERE url LIKE '%fyi%'
GO
3
So there are 7 rows in total in table "fyi_links", and 3 rows that have 'fyi' as part of their url names.
(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?
|