~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/queries.rst

  • Committer: Lee Bieber
  • Date: 2011-01-08 03:39:25 UTC
  • mfrom: (2062.1.2 build)
  • Revision ID: kalebral@gmail.com-20110108033925-koobar399kwrm4ba
Merge Brian - parser clean up
Merge Marisa - latest doc updates, fix sphinx warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
        SELECT * FROM table_name;
12
12
 
13
 
SELECT * FROM is an example of using SELECT with a clause. The select clause specifies the columns you want to retrieve. The from clause specifies the tables to search. 
 
13
SELECT * FROM is an example of using SELECT with clauses. The select clause specifies the columns you want to retrieve. The from clause specifies the tables to search. 
14
14
 
15
15
Keywords and clauses include:
16
16
 
17
 
* The FROM clause
18
 
* The WHERE clause
19
 
* The GROUP BY clause
20
 
* The HAVING clause
21
 
* The ORDER BY clause
 
17
.. toctree::
 
18
   :maxdepth: 2
 
19
 
 
20
   where
 
21
   distinct
 
22
   groupby
 
23
   having
 
24
   orderby
 
25
   join
22
26
 
23
27
For example, ::
24
28
 
26
30
        FROM table_name
27
31
        WHERE first_column_name > 1000;
28
32
 
29
 
*The column names that follow the SELECT keyword determine the columns that will be returned in the results. You can select as many column names that you'd like, or you can use a * to select all columns (as shown in the first example above). The order in which they are specified will be reflected in your query results.
30
 
 
31
 
*The table name that follows the keyword FROM specifies the table that will be queried to retrieve the desired results.
32
 
 
33
 
*The WHERE clause (optional) specifies the data values or rows to be returned or displayed, based on the criteria described after the keyword WHERE.
 
 
b'\\ No newline at end of file'
 
33
The column names that follow the SELECT keyword determine the columns that will be returned in the results. You can select as many column names that you'd like, or you can use a * to select all columns (as shown in the first example above). The order in which they are specified will be reflected in your query results.
 
34
 
 
35
The table name that follows the keyword FROM specifies the table that will be queried to retrieve the desired results.
 
36
 
 
37
The WHERE clause (optional) specifies the data values or rows to be returned or displayed, based on the criteria described after the keyword WHERE.
 
 
b'\\ No newline at end of file'