~stewart/drizzle/docs-improvements-1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Executing Queries
=================

'TODO'

.. code-block:: mysql

	SELECT * FROM table_name;

'TODO' 

Keywords and clauses include:

.. toctree::
   :maxdepth: 2

   where
   distinct
   groupby
   having
   orderby
   join

For example:

.. code-block:: mysql

	SELECT first_column_name, second_column_name
	FROM table_name
	WHERE first_column_name > 1000;

'TODO'