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, 5103👍, 0💬
Popular Posts:
What does a special set of tags <?= and ?> do in a PHP script page? <?= express...
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, ...
How can you enable automatic paging in DataGrid ? Following are the points to be done in order to en...
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...
If we have multiple AFTER Triggers on table how can we define the sequence of the triggers ? If a ta...