Sorting Data


As you learned in the previous chapter, the following SQL statement returns a single column from a database table. But look at the output. The data appears to be displayed in no particular order at all.

Input

SELECT prod_name FROM products;

Output

+----------------+ | prod_name      | +----------------+ | .5 ton anvil   | | 1 ton anvil    | | 2 ton anvil    | | Oil can        | | Fuses          | | Sling          | | TNT (1 stick)  | | TNT (5 sticks) | | Bird seed      | | Carrots        | | Safe           | | Detonator      | | JetPack 1000   | | JetPack 2000   | +----------------+

Actually, the retrieved data is not displayed in a mere random order. If unsorted, data is typically displayed in the order in which it appears in the underlying tables. This could be the order in which the data was added to the tables initially. However, if data was subsequently updated or deleted, the order is affected by how MySQL reuses reclaimed storage space. The end result is that you cannot (and should not) rely on the sort order if you do not explicitly control it. Relational database design theory states that the sequence of retrieved data cannot be assumed to have significance if ordering was not explicitly specified.

New Term

Clause SQL statements are made up of clauses, some required and some optional. A clause usually consists of a keyword and supplied data. An example of this is the SELECT statement's FROM clause, which you saw in the previous chapter.


To explicitly sort data retrieved using a SELECT statement, the ORDER BY clause is used. ORDER BY takes the name of one or more columns by which to sort the output. Look at the following example:

Input

SELECT prod_name FROM products ORDER BY prod_name;

Analysis

This statement is identical to the earlier statement, except it also specifies an ORDER BY clause instructing MySQL to sort the data alphabetically by the prod_name column. The results are as follows:

Output

+----------------+ | prod_name      | +----------------+ | .5 ton anvil   | | 1 ton anvil    | | 2 ton anvil    | | Bird seed      | | Carrots        | | Detonator      | | Fuses          | | JetPack 1000   | | JetPack 2000   | | Oil can        | | Safe           | | Sling          | | TNT (1 stick)  | | TNT (5 sticks) | +----------------+

Tip

Sorting by Nonselected Columns More often than not, the columns used in an ORDER BY clause are ones that were selected for display. However, this is actually not required, and it is perfectly legal to sort data by a column that is not retrieved.





MySQL Crash Course
MySQL Crash Course
ISBN: 0672327120
EAN: 2147483647
Year: 2004
Pages: 214
Authors: Ben Forta

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net