~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/insert.rst

  • Committer: Brian Aker
  • Date: 2011-04-20 14:53:20 UTC
  • mfrom: (1994.4.123 drizzle)
  • Revision ID: brian@tangent.org-20110420145320-fc57pxob4lm0lmu9
Update docs.

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