~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/queries.rst

  • Committer: Lee Bieber
  • Date: 2011-02-16 14:48:10 UTC
  • mfrom: (2172.1.5 build)
  • Revision ID: kalebral@gmail.com-20110216144810-u3w6f3a5s6qwisrz
Merge Stewart - remove unused macros
Merge Olaf - remove old style casts
Merge Stewart remove  unused macros in drizzledump
Merge Andrew - 718657: Several errors in Date/Time docs
Merge Olaf - Move strfunc functions into TYPELIB class

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
persistent effects on the database. SELECT simply retrieves data from
7
7
one or more tables, or expressions.
8
8
 
9
 
A query includes a list of columns to be included in a result set; an example of this would be:  ::
 
9
A query includes a list of columns to be included in a result set; an example of this would be:
 
10
 
 
11
.. code-block:: mysql
10
12
 
11
13
        SELECT * FROM table_name;
12
14
 
24
26
   orderby
25
27
   join
26
28
 
27
 
For example, ::
 
29
For example:
 
30
 
 
31
.. code-block:: mysql
28
32
 
29
33
        SELECT first_column_name, second_column_name
30
34
        FROM table_name