After learning how to insert and edit data in a database, thesecond part of our SQL tutorial takes an in-depth look at the SELECTquery,and explains how to use joins, sub-queries and built-in functions tofocus in on the data you need.
SQL also offers a bunch of built-in functions that come in handy when trying to obtain numeric totals and averages of specific fields. The first of these is the very useful COUNT() function, which counts the number of records in the result set and displays this total.
Consider the following example, which displays the total number of records in the "videos" table:
mysql> SELECT COUNT(*) FROM videos;
+----------+
| COUNT(*) |
+----------+
| 6 |
+----------+
1 row in set (0.00 sec)
This comes in very handy when you need to quickly calculate
the total number of records in a table.
The SUM() function calculates the sum of the values in the result set, while the AVG() function calculates the average. For example, if you wanted to calculate the average grade in math, physics and literature, you could use a query like this:
mysql> SELECT AVG(math), AVG(physics), AVG(literature) FROM grades;
+-----------+--------------+-----------------+
| AVG(math) | AVG(physics) | AVG(literature) |
+-----------+--------------+-----------------+
| 74.5000 | 40.7500 | 69.0000 |
+-----------+--------------+-----------------+
1 row in set (0.00 sec)
You can identify the smallest and largest value in a specific
column with the MIN() and MAX() functions - the following queries display the lowest and highest grade in math respectively.
mysql> SELECT MIN(math) FROM grades;
+-----------+
| MIN(math) |
+-----------+
| 65 |
+-----------+
1 row in set (0.00 sec)
mysql> SELECT MAX(math) FROM grades;
+-----------+
| MAX(math) |
+-----------+
| 96 |
+-----------+
1 row in set (0.00 sec)
This article copyright Melonfire 2001. All rights reserved.