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, 5376👍, 0💬
Popular Posts:
Should synchronization primitives be used on overrided bean methods? No. The EJB specification speci...
What is the difference between Authentication and authorization? This can be a tricky question. Thes...
How To Enter Binary Numbers in SQL Statements? - MySQL FAQs - Introduction to SQL Basics If you want...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
What are the five levels in CMMI? There are five levels of the CMM. According to the SEI, Level 1 – ...