~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/queries.rst

  • Committer: Lee Bieber
  • Date: 2010-11-14 05:18:07 UTC
  • mfrom: (1921.4.12 catalogs)
  • Revision ID: kalebral@gmail.com-20101114051807-p69h40jbsn1byf84
Merge Brian - add execute with no return

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Executing Queries 
 
1
Executing Queries
2
2
=================
3
3
 
4
 
Queries retrieve data from a database based on specific criteria. They
5
 
are performed with the declarative SELECT statement, which has no
6
 
persistent effects on the database. SELECT simply retrieves data from
7
 
one or more tables, or expressions.
8
 
 
9
 
A query includes a list of columns to be included in a result set; an example of this would be:  ::
10
 
 
11
 
        SELECT * FROM table_1;
12
 
 
13
 
SELECT * FROM is an example of using SELECT with a clause. Other keywords and clauses include:
14
 
 
15
 
* The FROM clause
16
 
* The WHERE clause
17
 
* The GROUP BY clause
18
 
* The HAVING clause
19
 
* The ORDER BY clause
 
 
b'\\ No newline at end of file'
 
4
To return from values from Drizzled you most commonly use the SELECT
 
5
command. An example of this would be:
 
6
 
 
7
SELECT * FROM table_1;
 
8
 
 
9