~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/insert.rst

  • Committer: Marisa Plumb
  • Date: 2011-03-30 03:12:02 UTC
  • mto: This revision was merged to the branch mainline in revision 2283.
  • Revision ID: marisa.plumb@gmail.com-20110330031202-z1q0xlnzdrqobvjv
doc fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
   INSERT INTO A VALUES ("1");
11
11
 
12
 
.. todo::
13
 
 
14
 
   multi row inserts, performance thereof.
15
 
 
16
 
INSERT statements that use VALUES syntax can insert multiple rows. To do this, use the multirow VALUES syntax (include multiple lists of column values, each enclosed within parentheses and separated by commas):
 
12
INSERT statements that use VALUES syntax can insert multiple rows. To do this, use the multi row VALUES syntax (include multiple lists of column values, each enclosed within parentheses and separated by commas):
17
13
 
18
14
.. code-block:: mysql
19
15