~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/replace.rst

  • Committer: Marisa Plumb
  • Date: 2010-12-04 02:38:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: marisa.plumb@gmail.com-20101204023829-2khzxh30wxi256db
updates to a few sql docs 

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
A typical query:
10
10
 
11
 
.. code-block:: mysql
12
 
 
13
 
   REPLACE INTO table_1 SET a=5;
 
11
REPLACE INTO table_1 SET a=5;
14
12
 
15
13
or
16
14
 
17
 
.. code-block:: mysql
18
 
 
19
 
   REPLACE INTO table_1 VALUES (4);
20
 
 
21
 
 
22
 
REPLACE is an extension to the SQL Standard that first appeared in MySQL.
 
15
REPLACE INTO table_1 VALUES (4);
 
16
 
 
17
 
 
18
REPLACE is an extension to the SQL Standard that firtst appeared in MySQL.