Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Use SELECT Statement to Count the Number of Rows
How To Use SELECT Statement to Count the Number of Rows? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY
✍: FYIcenter.com
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.
2007-05-11, 4916👍, 0💬
Popular Posts:
What is DAR (Decision Analysis and Resolution) ? Decision Analysis and Resolution is to analyze poss...
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by p...
How To Specify Two Background Images on a Page? - CSS Tutorials - Page Layout and Background Image D...
How To Retrieve Input Values for Checkboxes Properly? - PHP Script Tips - Processing Web Forms If mu...
Are risk constant through out the project ? * Never say that risk is high through out the project. R...