|
Home >> FAQs/Tutorials >> MySQL Tutorials
MySQL Tutorial - Count Number of Rows with SELECT Statements
By: FYIcenter.com
(Continued from previous topic...)
How To Use SELECT Statement to Count Number of Rows?
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 example:
mysql> SELECT COUNT(*) FROM fyi_links;
+----------+
| COUNT(*) |
+----------+
| 7 |
+----------+
1 row in set (0.00 sec)
mysql> SELECT COUNT(*) FROM fyi_links
WHERE url LIKE '%fyi%';
+----------+
| COUNT(*) |
+----------+
| 3 |
+----------+
1 row in set (0.01 sec)
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?
- How To Select Some Columns from a Table?
- How To Select Some Rows from a Table?
- How To Add More Data to the Testing Table?
- How To Sort the Query Output?
- Can the Query Output Be Sorted by Multiple Columns?
- How To Sort Output in Descending Order?
- How To Use SELECT Statement to Count Number of Rows?
- Can SELECT Statements Be Used on Views?
- How To Filter Out Duplications in Returning Rows?
- What Are Group Functions?
- 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 Groups?
- How To Apply Filtering Criteria at Group Level?
- 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?
|