~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/replace.rst

  • Committer: Lee Bieber
  • Date: 2011-01-10 20:12:43 UTC
  • mfrom: (2069.1.3 build)
  • Revision ID: kalebral@gmail.com-20110110201243-j7xse6v4ptaipc92
Merge Gustaf - Use constrained_check<> classes on kernel sysvars 
Merge Andrew - fix bug 645004: libuuid configure error message needs changing
Merge Stewart - fix bug 698315: innobase tests fail with --repeat=2

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.