~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/count.rst

  • Committer: Andrew Hutchings
  • Date: 2011-02-15 22:03:42 UTC
  • mto: (2172.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2173.
  • Revision ID: andrew@linuxjedi.co.uk-20110215220342-k4tveraug3bpy2v5
Make fixes to temporal docs
Make a few minor docs cleanups/fixes
Start using syntax-highlighting code blocks

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
|6       |10/2/2010          |820         |4               |Smith              |
20
20
+--------+-------------------+------------+----------------+-------------------+
21
21
 
22
 
The SQL COUNT function returns the number of rows in a table satisfying the criteria specified in the WHERE clause. If we want to count how many orders has made a customer with CustomerName of Smith, we will use the following SQL COUNT expression: ::
 
22
The SQL COUNT function returns the number of rows in a table satisfying the criteria specified in the WHERE clause. If we want to count how many orders has made a customer with CustomerName of Smith, we will use the following SQL COUNT expression:
 
23
 
 
24
.. code-block:: mysql
23
25
 
24
26
        SELECT COUNT * FROM Nodes
25
27
        WHERE UserName = "Smith";
26
28
 
27
29
In the above statement, the COUNT keyword returns the number 3, because the user Smith has 3 total nodes.
28
30
 
29
 
If you don’t specify a WHERE clause when using the COUNT keyword, your statement will simply return the total number of rows in the table, which would be 6 in this example: ::
 
31
If you don’t specify a WHERE clause when using the COUNT keyword, your statement will simply return the total number of rows in the table, which would be 6 in this example:
 
32
 
 
33
.. code-block:: mysql
30
34
 
31
35
        SELECT COUNT * FROM Nodes;